From 2a9f8675c142505b7f0f527768cf06ee2da3e2c0 Mon Sep 17 00:00:00 2001 From: lyx0 <66651385+lyx0@users.noreply.github.com> Date: Sat, 6 Nov 2021 21:30:27 +0100 Subject: [PATCH] add test placeholder --- pkg/commands/personal/personal_test.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pkg/commands/personal/personal_test.go 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) + } + + }) +}