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) + } +}