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

@@ -514,7 +514,7 @@ proc close*(h: PAsyncHTTPServer) =
## Closes the ``PAsyncHTTPServer``.
h.asyncSocket.close()
when isMainModule:
when not defined(testing) and isMainModule:
var counter = 0
var s: TServer