2021-11-30 07:35:18 +00:00
|
|
|
import
|
2023-02-08 01:19:55 +00:00
|
|
|
unittest2,
|
2021-11-30 07:35:18 +00:00
|
|
|
../confutils,
|
|
|
|
../confutils/defs
|
|
|
|
|
|
|
|
type
|
|
|
|
TestConf* = object
|
|
|
|
dataDir* {.
|
|
|
|
ignore
|
|
|
|
defaultValue: "nimbus"
|
|
|
|
name: "data-dir"}: string
|
|
|
|
|
|
|
|
logLevel* {.
|
|
|
|
defaultValue: "DEBUG"
|
|
|
|
desc: "Sets the log level."
|
|
|
|
name: "log-level" }: string
|
|
|
|
|
|
|
|
suite "test ignore option":
|
|
|
|
test "ignored option have no default value":
|
|
|
|
let conf = TestConf.load()
|
|
|
|
doAssert(conf.logLevel == "DEBUG")
|
|
|
|
doAssert(conf.dataDir == "")
|