From 54460d5860de578f76d302cd63e09cf93b49fb13 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 1 Mar 2016 12:43:55 -0500 Subject: [PATCH] Empty tests should be skipped --- scanner/scanner_test.go | 8 ++++++-- utils/mapping_test.go | 7 ------- utils/utils_test.go | 12 ++++++++++++ 3 files changed, 18 insertions(+), 9 deletions(-) delete mode 100644 utils/mapping_test.go create mode 100644 utils/utils_test.go diff --git a/scanner/scanner_test.go b/scanner/scanner_test.go index 45c8014ae..f5c4d3aa3 100644 --- a/scanner/scanner_test.go +++ b/scanner/scanner_test.go @@ -1,8 +1,12 @@ package scanner - -import "testing" +import ( + "testing" + . "github.com/smartystreets/goconvey/convey" +) func TestEmpty(t *testing.T) { + Convey("Missing tests", t, nil) + } diff --git a/utils/mapping_test.go b/utils/mapping_test.go deleted file mode 100644 index 809bf1203..000000000 --- a/utils/mapping_test.go +++ /dev/null @@ -1,7 +0,0 @@ -package utils - -import "testing" - -func TestEmpty(t *testing.T) { - -} \ No newline at end of file diff --git a/utils/utils_test.go b/utils/utils_test.go new file mode 100644 index 000000000..bb8807497 --- /dev/null +++ b/utils/utils_test.go @@ -0,0 +1,12 @@ +package utils + +import ( + "testing" + . "github.com/smartystreets/goconvey/convey" +) + +func TestEmpty(t *testing.T) { + + Convey("Missing tests", t, nil) + +} \ No newline at end of file