diff --git a/internal/commands/disconnect_test.go b/internal/commands/disconnect_test.go new file mode 100644 index 0000000..3440225 --- /dev/null +++ b/internal/commands/disconnect_test.go @@ -0,0 +1,10 @@ +package commands + +import "testing" + +func TestExample1(t *testing.T) { + sum := 2 + 2 + if sum != 4 { + t.Errorf("Expected 4, got %d", sum) + } +}