test-ci/main_test.go
Frank Fuentes 4611dd02b6
Some checks failed
Test CI / test (push) Failing after 36s
test: verify CI pipeline
2026-04-24 11:47:24 -07:00

11 lines
198 B
Go

package main
import "testing"
func TestGreet(t *testing.T) {
got := Greet()
want := "Astraevum Forge is online"
if got != want {
t.Errorf("got %q, want %q", got, want)
}
}