mirror-nourybot/pkg/commands/commands_test.go

19 lines
276 B
Go
Raw Normal View History

2021-10-28 23:12:40 +02:00
package commands
import "testing"
func TestCommands(t *testing.T) {
t.Run("commands 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)
}
})
}