commit 5e347fbde9c86a3176783e2543b8120dca26b8f7 parent be63dfbb1552f2139d678dc177fefc5ed1f50d22 Author: MTRNord <mtrnord1@gmail.com> Date: Sun, 22 Oct 2017 13:20:04 +0200 Switch Suite File Signed-off-by: MTRNord <mtrnord1@gmail.com> Diffstat:
| A | matrix/db/db_suite_test.go | | | 13 | +++++++++++++ |
| D | matrix/db/matrix_suite_test.go | | | 13 | ------------- |
2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/matrix/db/db_suite_test.go b/matrix/db/db_suite_test.go @@ -0,0 +1,13 @@ +package db_test + +import ( + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "testing" +) + +func TestDb(t *testing.T) { + RegisterFailHandler(Fail) + RunSpecs(t, "Matrix DB Suite") +} diff --git a/matrix/db/matrix_suite_test.go b/matrix/db/matrix_suite_test.go @@ -1,13 +0,0 @@ -package db - -import ( - . "github.com/onsi/ginkgo" - . "github.com/onsi/gomega" - - "testing" -) - -func TestMatrix(t *testing.T) { - RegisterFailHandler(Fail) - RunSpecs(t, "Matrix DB Suite") -}