udemy-go-web-1/cmd/web/main_test.go
2024-07-07 22:37:48 +02:00

11 lines
126 B
Go

package main
import "testing"
func TestRun(t *testing.T) {
_, err := run()
if err != nil {
t.Error("failed run()")
}
}