adding blank tests so all packages represented
All checks were successful
gitea-deepak/gogmagog/pipeline/head This commit looks good

This commit is contained in:
Deepak Mallubhotla 2020-12-28 08:55:07 -06:00
parent 6a3cdb1877
commit 3977d395f3
Signed by: deepak
GPG Key ID: 64BF53A3369104E7
2 changed files with 20 additions and 0 deletions

10
config/config_test.go Normal file
View File

@ -0,0 +1,10 @@
package config_test
import (
"log"
"testing"
)
func TestTrue(t *testing.T) {
log.Print("no real test")
}

10
db/postgres_test.go Normal file
View File

@ -0,0 +1,10 @@
package db_test
import (
"log"
"testing"
)
func TestTrue(t *testing.T) {
log.Print("no real test")
}