Files
tablizer/main_test.go

20 lines
270 B
Go
Raw Permalink Normal View History

package main
import (
"testing"
"github.com/rogpeppe/go-internal/testscript"
)
func TestMain(m *testing.M) {
2025-03-06 17:24:16 +01:00
testscript.Main(m, map[string]func(){
"tablizer": main,
})
}
2025-01-14 12:51:51 +01:00
func TestTablizer(t *testing.T) {
testscript.Run(t, testscript.Params{
Dir: "t",
})
}