mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-24 05:22:03 +00:00
15 lines
248 B
Nim
15 lines
248 B
Nim
|
{.used.}
|
||
|
|
||
|
import
|
||
|
os,
|
||
|
unittest,
|
||
|
../beacon_chain/[kvstore, kvstore_sqlite3],
|
||
|
./test_kvstore
|
||
|
|
||
|
suite "Sqlite":
|
||
|
test "KVStore interface":
|
||
|
let db = SqliteStoreRef.init("", inMemory = true)
|
||
|
defer: db.close()
|
||
|
|
||
|
testKVStore(kvStore db)
|