aboutsummaryrefslogtreecommitdiffstats
path: root/test/extra/ascii/manifest.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/extra/ascii/manifest.ttl')
-rw-r--r--test/extra/ascii/manifest.ttl65
1 files changed, 65 insertions, 0 deletions
diff --git a/test/extra/ascii/manifest.ttl b/test/extra/ascii/manifest.ttl
new file mode 100644
index 00000000..625a8a4c
--- /dev/null
+++ b/test/extra/ascii/manifest.ttl
@@ -0,0 +1,65 @@
+@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#> .
+
+<>
+ a mf:Manifest ;
+ rdfs:comment "Serd ASCII writing test cases" ;
+ mf:entries (
+ <#test-backspace>
+ <#test-delete>
+ <#test-escapes>
+ <#test-form-feed>
+ <#test-uri-escape>
+ <#test-utf8-literal>
+ <#test-utf8-uri>
+ <#test-whitespace>
+ ) .
+
+<#test-backspace>
+ a rdft:TestTurtleEval ;
+ mf:action <test-backspace.ttl> ;
+ mf:name "test-backspace" ;
+ mf:result <test-backspace.nt> .
+
+<#test-delete>
+ a rdft:TestTurtleEval ;
+ mf:action <test-delete.ttl> ;
+ mf:name "test-delete" ;
+ mf:result <test-delete.nt> .
+
+<#test-escapes>
+ a rdft:TestTurtleEval ;
+ mf:action <test-escapes.ttl> ;
+ mf:name "test-escapes" ;
+ mf:result <test-escapes.nt> .
+
+<#test-form-feed>
+ a rdft:TestTurtleEval ;
+ mf:action <test-form-feed.ttl> ;
+ mf:name "test-form-feed" ;
+ mf:result <test-form-feed.nt> .
+
+<#test-uri-escape>
+ a rdft:TestTurtleEval ;
+ mf:action <test-uri-escape.ttl> ;
+ mf:name "test-uri-escape" ;
+ mf:result <test-uri-escape.nt> .
+
+<#test-utf8-literal>
+ a rdft:TestTurtleEval ;
+ mf:action <test-utf8-literal.ttl> ;
+ mf:name "test-utf8-literal" ;
+ mf:result <test-utf8-literal.nt> .
+
+<#test-utf8-uri>
+ a rdft:TestTurtleEval ;
+ mf:action <test-utf8-uri.ttl> ;
+ mf:name "test-utf8-uri" ;
+ mf:result <test-utf8-uri.nt> .
+
+<#test-whitespace>
+ a rdft:TestTurtleEval ;
+ mf:action <test-whitespace.ttl> ;
+ mf:name "test-whitespace" ;
+ mf:result <test-whitespace.nt> .