diff --git a/pkg/commands/personal/personal_test.go b/pkg/commands/personal/personal_test.go new file mode 100644 index 0000000..f4c78fa --- /dev/null +++ b/pkg/commands/personal/personal_test.go @@ -0,0 +1,18 @@ +package personal + +import "testing" + +func TestCommands(t *testing.T) { + t.Run("personal package test placeholder", func(t *testing.T) { + request := 1 + response := 1 + + got := request + want := response + + if got != want { + t.Errorf("got %q, want %q", got, want) + } + + }) +}