questionable/questionable.nimble
Mark Spanbroek 81ed9b652c Initial version of questionable
Syntactic sugar for std/options, pkg/result and pkg/stew
2021-03-06 10:38:44 +01:00

11 lines
286 B
Nim

version = "0.1.0"
author = "Questionable Authors"
description = "Elegant optional types"
license = "MIT"
task test, "Runs the test suite":
for module in ["options", "result", "stew"]:
withDir "testmodules/" & module:
exec "nimble install -d -y"
exec "nimble test -y"