add test placeholder for db

This commit is contained in:
lyx0 2021-10-28 23:34:30 +02:00
parent 595115945c
commit cb61108784

18
pkg/db/db_test.go Normal file
View file

@ -0,0 +1,18 @@
package db
import "testing"
func TestDb(t *testing.T) {
t.Run("db 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)
}
})
}