aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/spec
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/unit/spec/grammar/parser/main.go7
-rw-r--r--tests/unit/spec/grammar/parser/parser.go (renamed from tests/unit/urubu/spec/grammar/parser.go)3
-rw-r--r--tests/unit/spec/test/main.go7
-rw-r--r--tests/unit/spec/test/test.go (renamed from tests/unit/urubu/spec/test.go)3
4 files changed, 20 insertions, 0 deletions
diff --git a/tests/unit/spec/grammar/parser/main.go b/tests/unit/spec/grammar/parser/main.go
new file mode 100644
index 0000000..a99bfc4
--- /dev/null
+++ b/tests/unit/spec/grammar/parser/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "parser"
+
+func main() {
+ parser.MainTest()
+}
diff --git a/tests/unit/urubu/spec/grammar/parser.go b/tests/unit/spec/grammar/parser/parser.go
index 773c466..8170518 100644
--- a/tests/unit/urubu/spec/grammar/parser.go
+++ b/tests/unit/spec/grammar/parser/parser.go
@@ -1437,3 +1437,6 @@ func testPosition(t *testing.T, pos, expected Position) {
t.Fatalf("unexpected position want: %+v, got: %+v", expected, pos)
}
}
+
+
+func MainTest() {}
diff --git a/tests/unit/spec/test/main.go b/tests/unit/spec/test/main.go
new file mode 100644
index 0000000..0f9aed7
--- /dev/null
+++ b/tests/unit/spec/test/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "test"
+
+func main() {
+ test.MainTest()
+}
diff --git a/tests/unit/urubu/spec/test.go b/tests/unit/spec/test/test.go
index eddba92..c6ec8f1 100644
--- a/tests/unit/urubu/spec/test.go
+++ b/tests/unit/spec/test/test.go
@@ -409,3 +409,6 @@ func testTestCase(t *testing.T, expected, actual *TestCase) {
t.Fatalf("unexpected test case: want: %#v, got: %#v", expected, actual)
}
}
+
+
+func MainTest() {}