diff options
author | David Robillard <d@drobilla.net> | 2023-04-03 09:00:08 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-05 09:45:15 -0400 |
commit | 0535ad8cab467c922be226f971914a1a148b0f37 (patch) | |
tree | c7eeedbcafd3171d4913e55a638e5fada91ecebd | |
parent | 06ae14c8997200bbb3d4dbf0a83e1857d1f79895 (diff) | |
download | serd-0535ad8cab467c922be226f971914a1a148b0f37.tar.gz serd-0535ad8cab467c922be226f971914a1a148b0f37.tar.bz2 serd-0535ad8cab467c922be226f971914a1a148b0f37.zip |
Improve test suite coverage
-rw-r--r-- | test/good/test-base-query.nt | 4 | ||||
-rw-r--r-- | test/good/test-base-query.ttl | 9 |
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> . |