From b5234413611ce5984292f85a01de1f56c045b490 Mon Sep 17 00:00:00 2001 From: obscuren Date: Mon, 16 Mar 2015 11:27:38 +0100 Subject: Moved ethutil => common --- common/main_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 common/main_test.go (limited to 'common/main_test.go') diff --git a/common/main_test.go b/common/main_test.go new file mode 100644 index 000000000..2bed278e6 --- /dev/null +++ b/common/main_test.go @@ -0,0 +1,9 @@ +package common + +import ( + "testing" + + checker "gopkg.in/check.v1" +) + +func Test(t *testing.T) { checker.TestingT(t) } -- cgit