mirror of
https://github.com/status-im/nim-eth.git
synced 2025-01-10 22:35:53 +00:00
13 lines
260 B
Nim
13 lines
260 B
Nim
import
|
|
os, strutils, strformat,
|
|
util/json_testing
|
|
|
|
template sourceDir: string = currentSourcePath.rsplit(DirSep, 1)[0]
|
|
|
|
const casesDir = &"{sourceDir}{DirSep}cases{DirSep}"
|
|
|
|
for file in walkDirRec(casesDir):
|
|
if file.endsWith("json"):
|
|
runTests(file)
|
|
|