Merge pull request #343 from andreaferretti/fix305

Fixed https://github.com/nim-lang/nimble/issues/305
This commit is contained in:
Dominik Picheta 2017-04-07 19:53:55 +02:00 committed by GitHub
commit e62084a2a7
2 changed files with 13 additions and 9 deletions

View file

@ -194,7 +194,7 @@ test "can use nimscript's setCommand with flags":
let (output, exitCode) = execNimble("--debug", "cr")
let lines = output.strip.splitLines()
check exitCode == QuitSuccess
check "Hello World".normalize in lines[^2].normalize
check inLines(lines, "Hello World")
test "can use nimscript with repeated flags (issue #329)":
cd "nimscript":