aboutsummaryrefslogtreecommitdiffstats
path: root/test/extra/full
diff options
context:
space:
mode:
Diffstat (limited to 'test/extra/full')
-rw-r--r--test/extra/full/README.md5
-rw-r--r--test/extra/full/full-uris.ttl7
-rw-r--r--test/extra/full/manifest.ttl17
3 files changed, 29 insertions, 0 deletions
diff --git a/test/extra/full/README.md b/test/extra/full/README.md
new file mode 100644
index 00000000..5cadb1b1
--- /dev/null
+++ b/test/extra/full/README.md
@@ -0,0 +1,5 @@
+Full Test Suite
+=================
+
+This simple suite tests preservation of full URIs in the input (avoiding prefix
+qualification).
diff --git a/test/extra/full/full-uris.ttl b/test/extra/full/full-uris.ttl
new file mode 100644
index 00000000..cfb048df
--- /dev/null
+++ b/test/extra/full/full-uris.ttl
@@ -0,0 +1,7 @@
+@prefix eg: <http://example.org/> .
+
+<http://example.org/s1>
+ eg:prefixed false .
+
+eg:s2
+ eg:prefixed true .
diff --git a/test/extra/full/manifest.ttl b/test/extra/full/manifest.ttl
new file mode 100644
index 00000000..a7cfac4a
--- /dev/null
+++ b/test/extra/full/manifest.ttl
@@ -0,0 +1,17 @@
+@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix rdft: <http://www.w3.org/ns/rdftest#> .
+@prefix serd: <http://drobilla.net/ns/serd#> .
+
+<>
+ a mf:Manifest ;
+ rdfs:comment "Serd full URI test suite" ;
+ mf:entries (
+ <#full-uris>
+ ) .
+
+<#full-uris>
+ a rdft:TestTurtleEval ;
+ mf:action <full-uris.ttl> ;
+ mf:name "full-uris" ;
+ mf:result <full-uris.ttl> .