This commit is contained in:
Dominik Picheta 2018-09-09 22:16:03 +01:00
commit 5d765fcc27
13 changed files with 29 additions and 3 deletions

View file

@ -0,0 +1,4 @@
proc myFunc*() =
echo "Executing my func"

View file

@ -0,0 +1,4 @@
version = "0.1.0"
author = "John Doe"
description = "Nimble Test"
license = "BSD"

View file

@ -0,0 +1 @@
echo "Should be ignored"

View file

@ -0,0 +1 @@
echo "Should be ignored"

View file

@ -0,0 +1,7 @@
import testing123, unittest
test "can accept":
echo "First test"
myFunc()