udemy-go-web-1/cmd/web/main_test.go

11 lines
126 B
Go
Raw Normal View History

package main
import "testing"
func TestRun(t *testing.T) {
2024-07-07 20:37:48 +00:00
_, err := run()
if err != nil {
t.Error("failed run()")
}
}