From f6b41157cf99f0d773e6625e531a4b67d221de58 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 15:03:09 +0500 Subject: [PATCH] disconnect test --- internal/commands/disconnect_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 internal/commands/disconnect_test.go 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) + } +}