mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
add test placeholder
This commit is contained in:
parent
d847286469
commit
2a9f8675c1
1 changed files with 18 additions and 0 deletions
18
pkg/commands/personal/personal_test.go
Normal file
18
pkg/commands/personal/personal_test.go
Normal file
|
@ -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)
|
||||
}
|
||||
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue