Don't run non-test code when defined(testing)

This commit is contained in:
Oleh Prypin
2015-04-21 14:37:29 +03:00
parent d203d6fad4
commit 32109a7867
46 changed files with 104 additions and 82 deletions

View File

@@ -70,5 +70,6 @@ proc unidecode*(s: string): string =
when isMainModule:
loadUnidecodeTable("lib/pure/unidecode/unidecode.dat")
echo unidecode("Äußerst")
when not defined(testing):
echo unidecode("Äußerst")