Files
rpnc/main_test.go

20 lines
260 B
Go
Raw Permalink Normal View History

package main
import (
"testing"
"github.com/rogpeppe/go-internal/testscript"
)
func TestMain(m *testing.M) {
2025-08-08 12:30:32 +02:00
testscript.Main(m, map[string]func(){
"rpn": main,
})
}
func TestRpn(t *testing.T) {
testscript.Run(t, testscript.Params{
Dir: "t",
})
}