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