mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-02-22 22:43:09 +00:00
18 lines
317 B
Nim
18 lines
317 B
Nim
import pkg/chronos
|
|
import pkg/asynctest
|
|
import pkg/questionable/results
|
|
import pkg/codex/blocktype as bt
|
|
import pkg/codex/stores/cachestore
|
|
|
|
import ../helpers
|
|
|
|
import codex/slotbuilder/slotbuilder
|
|
|
|
asyncchecksuite "Slot builder":
|
|
test "a":
|
|
let builder = SlotBuilder()
|
|
builder.aaa()
|
|
|
|
check:
|
|
1 == 1
|