mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 22:13:07 +00:00
17 lines
316 B
Nim
17 lines
316 B
Nim
|
|
{.used.}
|
||
|
|
|
||
|
|
import
|
||
|
|
std/[strutils, os],
|
||
|
|
stew/results,
|
||
|
|
testutils/unittests,
|
||
|
|
chronos
|
||
|
|
import
|
||
|
|
../../waku/common/postgres/asyncpool,
|
||
|
|
../../waku/common/postgres/pg_asyncpool_opts
|
||
|
|
|
||
|
|
suite "Async pool":
|
||
|
|
|
||
|
|
asyncTest "Create connection pool":
|
||
|
|
## TODO: extend unit tests
|
||
|
|
var pgOpts = PgAsyncPoolOptions.init()
|