1
0
Fork 0
mirror of https://github.com/lyx0/nourybot.git synced 2024-11-13 19:49:55 +01:00
mirror-nourybot/cmd/main_test.go

19 lines
264 B
Go
Raw Normal View History

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