Files
reynold ff97cad216 feat: seed Lariza feature demonstration
Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities.

Assisted-by: Codex: GPT-5.6
2026-07-18 20:21:36 +08:00

11 lines
198 B
Go

package payment
import "testing"
func TestAuthorize(t *testing.T) {
got := Authorize(12500, "PHP")
if got != "authorized 12500 PHP" {
t.Fatalf("unexpected authorization result: %q", got)
}
}