q/tests/tests_test.go
Eduard Urbach a64b2d6ec3
All checks were successful
/ test (push) Successful in 15s
Added a test for scripts
2025-07-07 22:29:19 +02:00

16 lines
No EOL
217 B
Go

package tests_test
import (
"testing"
)
var tests = []testRun{
{"script", "", "Hello\n", 0},
{"sum", "", "", 10},
}
func TestTests(t *testing.T) {
for _, test := range tests {
test.Run(t, test.Name+".q")
}
}