diff --git a/config/config_test.go b/config/config_test.go new file mode 100644 index 0000000..2ad4d0a --- /dev/null +++ b/config/config_test.go @@ -0,0 +1,10 @@ +package config_test + +import ( + "log" + "testing" +) + +func TestTrue(t *testing.T) { + log.Print("no real test") +} diff --git a/db/postgres_test.go b/db/postgres_test.go new file mode 100644 index 0000000..e3451e8 --- /dev/null +++ b/db/postgres_test.go @@ -0,0 +1,10 @@ +package db_test + +import ( + "log" + "testing" +) + +func TestTrue(t *testing.T) { + log.Print("no real test") +}