From e53731fd75a5222d23e52c96b18c87c3c52a483a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Tue, 27 Jan 2026 02:15:12 +0100 Subject: [PATCH] idle --- go_cloud/internal/auth/auth_test.go | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 go_cloud/internal/auth/auth_test.go diff --git a/go_cloud/internal/auth/auth_test.go b/go_cloud/internal/auth/auth_test.go deleted file mode 100644 index db5eb93..0000000 --- a/go_cloud/internal/auth/auth_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package auth - -import ( - "testing" -) - -func TestGenerateState(t *testing.T) { - state1, err := GenerateState() - if err != nil { - t.Fatal(err) - } - state2, err := GenerateState() - if err != nil { - t.Fatal(err) - } - if state1 == state2 { - t.Error("States should be unique") - } - if len(state1) == 0 { - t.Error("State should not be empty") - } -} - -func TestNewService(t *testing.T) { - // Mock db - // service, err := NewService(cfg, db) - // TODO: Mock database for full test - t.Skip("Requires database mock") -}