summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Williams <nico@cryptonector.com>2015-01-01 01:49:40 -0600
committerNicolas Williams <nico@cryptonector.com>2015-01-01 01:49:40 -0600
commitc4cc62a053f632f5daf6c40837f5dcfa01ddf590 (patch)
tree286b735c4d7128d1ca4fbb9fd9a34b637dd3b015
parent862696a7784335e08d4761df2042e500d4f40d53 (diff)
Add more missing test files
-rw-r--r--tests/modules/test_bind_order.jq4
-rw-r--r--tests/modules/test_bind_order0.jq1
-rw-r--r--tests/modules/test_bind_order1.jq2
-rw-r--r--tests/modules/test_bind_order2.jq2
4 files changed, 9 insertions, 0 deletions
diff --git a/tests/modules/test_bind_order.jq b/tests/modules/test_bind_order.jq
new file mode 100644
index 00000000..30e1ee86
--- /dev/null
+++ b/tests/modules/test_bind_order.jq
@@ -0,0 +1,4 @@
+import "test_bind_order0" as t;
+import "test_bind_order1" as t;
+import "test_bind_order2" as t;
+def check: if [t::sym0,t::sym1,t::sym2] == [0,1,2] then true else false end;
diff --git a/tests/modules/test_bind_order0.jq b/tests/modules/test_bind_order0.jq
new file mode 100644
index 00000000..8cb49a99
--- /dev/null
+++ b/tests/modules/test_bind_order0.jq
@@ -0,0 +1 @@
+def sym0: 0;
diff --git a/tests/modules/test_bind_order1.jq b/tests/modules/test_bind_order1.jq
new file mode 100644
index 00000000..be72b43c
--- /dev/null
+++ b/tests/modules/test_bind_order1.jq
@@ -0,0 +1,2 @@
+def sym0: 1;
+def sym1: 1;
diff --git a/tests/modules/test_bind_order2.jq b/tests/modules/test_bind_order2.jq
new file mode 100644
index 00000000..86f422bf
--- /dev/null
+++ b/tests/modules/test_bind_order2.jq
@@ -0,0 +1,2 @@
+def sym1: 2;
+def sym2: 2;