switch to two sqlites for now

This commit is contained in:
Jaremy Creechley 2023-09-27 20:06:01 -07:00
parent 58fcdd9460
commit e761957fb6
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -28,7 +28,8 @@ suite "Test Basic Mounted Datastore":
var
sql: SQLiteDatastore
fs: FSDatastore
sql2: SQLiteDatastore
# fs: FSDatastore
mountedDs: MountedDatastore
setupAll:
@ -37,10 +38,11 @@ suite "Test Basic Mounted Datastore":
createDir(rootAbs)
sql = SQLiteDatastore.new(Memory).tryGet
fs = FSDatastore.new(rootAbs, depth = 5).tryGet
sql2 = SQLiteDatastore.new(Memory).tryGet
# fs = FSDatastore.new(rootAbs, depth = 5).tryGet
mountedDs = MountedDatastore.new({
sqlKey: Datastore(sql),
fsKey: Datastore(fs)}.toTable)
fsKey: Datastore(sql2)}.toTable)
.tryGet
teardownAll: