setting up slot builder

This commit is contained in:
benbierens 2023-11-30 09:13:48 +01:00 committed by Dmitriy Ryajov
parent 75a75446bb
commit e7996bf058
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,6 @@
type
SlotBuilder* = object of RootObj
proc aaa*(self: SlotBuilder): void =
echo "aaa"

View File

@ -0,0 +1,17 @@
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