From 3977d395f34b57e445bd6c52b8d3bc6f0c3b64d3 Mon Sep 17 00:00:00 2001 From: Deepak Date: Mon, 28 Dec 2020 08:55:07 -0600 Subject: [PATCH] adding blank tests so all packages represented --- config/config_test.go | 10 ++++++++++ db/postgres_test.go | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 config/config_test.go create mode 100644 db/postgres_test.go 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") +}