aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/good/test-base-query.nt4
-rw-r--r--test/good/test-base-query.ttl9
2 files changed, 11 insertions, 2 deletions
diff --git a/test/good/test-base-query.nt b/test/good/test-base-query.nt
index d40c2f6b..89456a44 100644
--- a/test/good/test-base-query.nt
+++ b/test/good/test-base-query.nt
@@ -1 +1,3 @@
-<http://example.org/a/b/c/d;p?q> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/Thing> .
+<http://example.org/a/b/c/d;p?q> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/Base> .
+<http://example.org/a/b/c/child> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/Child> .
+<http://example.org/a/b/x> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/NonChild> .
diff --git a/test/good/test-base-query.ttl b/test/good/test-base-query.ttl
index 77638817..583dd610 100644
--- a/test/good/test-base-query.ttl
+++ b/test/good/test-base-query.ttl
@@ -1,3 +1,10 @@
@base <http://example.org/a/b/c/d;p?q> .
-<> a <http://example.org/Thing> . \ No newline at end of file
+<>
+ a <http://example.org/Base> .
+
+<child>
+ a <http://example.org/Child> .
+
+<http://example.org/a/b/x>
+ a <http://example.org/NonChild> .