mirror of
https://github.com/logos-storage/apatheia.git
synced 2026-01-02 04:53:10 +00:00
9 lines
209 B
Nim
9 lines
209 B
Nim
|
|
import std/[os, strutils]
|
|
|
|
task test, "unit tests":
|
|
for file in listFiles("tests"):
|
|
let name = file.splitPath().tail
|
|
if name.startsWith("t") and name.endsWith(".nim"):
|
|
exec "nim c -r " & file
|