mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-16 20:20:57 +01:00
20 lines
270 B
Go
20 lines
270 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rogpeppe/go-internal/testscript"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
testscript.Main(m, map[string]func(){
|
|
"tablizer": main,
|
|
})
|
|
}
|
|
|
|
func TestTablizer(t *testing.T) {
|
|
testscript.Run(t, testscript.Params{
|
|
Dir: "t",
|
|
})
|
|
}
|