nim-confutils/tests/fail/test_abbr_duplicate_root_su...

20 lines
315 B
Nim

import
../../confutils,
../../confutils/defs
type
Command = enum
noCommand
TestConf* = object
dataDir* {.abbr: "d" }: OutDir
case cmd* {.
command
defaultValue: noCommand }: Command
of noCommand:
importDir* {.abbr: "d" }: OutDir
let c = TestConf.load()