test-ci/main_test.go

12 lines
198 B
Go
Raw Normal View History

2026-04-24 11:47:24 -07:00
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)
}
}