From 9b4e1f244241ba5c7312ac89e7680be25410367e Mon Sep 17 00:00:00 2001 From: demo-bot Date: Mon, 11 May 2026 10:29:19 +0000 Subject: [PATCH] feat(scaffold): add main_test.go [skip ci] --- main_test.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 main_test.go diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000..81ce4df --- /dev/null +++ b/main_test.go @@ -0,0 +1,16 @@ +package main + +import ( + "net/http" + "net/http/httptest" + "testing" +) + +func TestHealth(t *testing.T) { + req := httptest.NewRequest(http.MethodGet, "/health", nil) + rec := httptest.NewRecorder() + healthHandler(rec, req) + if rec.Code != http.StatusOK { + t.Fatalf("expected 200, got %d", rec.Code) + } +}