mirror of https://github.com/status-im/nim-eth.git
15 lines
255 B
Nim
15 lines
255 B
Nim
|
{.used.}
|
||
|
|
||
|
import
|
||
|
os,
|
||
|
unittest,
|
||
|
../../eth/db/[kvstore, kvstore_sqlite3],
|
||
|
./test_kvstore
|
||
|
|
||
|
suite "SqStoreRef":
|
||
|
test "KvStore interface":
|
||
|
let db = SqStoreRef.init("", "test", inMemory = true)[]
|
||
|
defer: db.close()
|
||
|
|
||
|
testKvStore(kvStore db)
|