summary refs log tree commit diff stats
path: root/tests/deps/jester-#head/jester.nimble
diff options
context:
space:
mode:
Diffstat (limited to 'tests/deps/jester-#head/jester.nimble')
-rw-r--r--tests/deps/jester-#head/jester.nimble22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/deps/jester-#head/jester.nimble b/tests/deps/jester-#head/jester.nimble
new file mode 100644
index 000000000..08e990bd7
--- /dev/null
+++ b/tests/deps/jester-#head/jester.nimble
@@ -0,0 +1,22 @@
+# Package
+
+version       = "0.4.0" # Be sure to update jester.jesterVer too!
+author        = "Dominik Picheta"
+description   = "A sinatra-like web framework for Nim."
+license       = "MIT"
+
+skipFiles = @["todo.markdown"]
+skipDirs = @["tests"]
+
+# Deps
+
+requires "nim >= 0.18.1"
+
+when not defined(windows):
+  requires "httpbeast >= 0.2.0"
+
+# For tests
+requires "asynctools"
+
+task test, "Runs the test suite.":
+  exec "nimble c -y -r tests/tester"
\ No newline at end of file