wip: restoring tests

This commit is contained in:
Ben 2024-08-15 15:26:36 +02:00
parent b742d95d28
commit 19393f00ed
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B
2 changed files with 4 additions and 3 deletions

View File

@ -375,10 +375,10 @@ proc before() {.async.} =
createDir(path) createDir(path)
proc after() {.async.} = proc after() {.async.} =
removeDir(path) os.removeDir(path)
let let
depth = path.split(DirSep).len depth = path.split(os.DirSep).len
commonBlockStoreTests( commonBlockStoreTests(
"RepoStore FS backend", proc: BlockStore = "RepoStore FS backend", proc: BlockStore =

View File

@ -1,5 +1,6 @@
import helpers/multisetup import helpers/multisetup
import helpers/trackers import helpers/trackers
import helpers/templeveldb import helpers/templeveldb
import pkg/codex/utils
export multisetup, trackers, templeveldb export multisetup, trackers, templeveldb, utils