From 61a5449be3d6fa9aee33626ebdb3cf40ad57aacc Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 14:48:15 +0500 Subject: [PATCH] add connect test --- internal/commands/connect_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 internal/commands/connect_test.go diff --git a/internal/commands/connect_test.go b/internal/commands/connect_test.go new file mode 100644 index 0000000..fccfd86 --- /dev/null +++ b/internal/commands/connect_test.go @@ -0,0 +1,10 @@ +package commands + +import "testing" + +func TestExample(t *testing.T) { + sum := 2 + 2 + if sum != 4 { + t.Errorf("Expected 4, got %d", sum) + } +}