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