aboutsummaryrefslogtreecommitdiffstats
path: root/test/extra/lax/manifest.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/extra/lax/manifest.ttl')
-rw-r--r--test/extra/lax/manifest.ttl30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/extra/lax/manifest.ttl b/test/extra/lax/manifest.ttl
new file mode 100644
index 00000000..5d220daf
--- /dev/null
+++ b/test/extra/lax/manifest.ttl
@@ -0,0 +1,30 @@
+@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 lax syntax test cases" ;
+ mf:entries (
+ <#test-bad-string>
+ <#test-bad-uri>
+ <#test-bad-utf8>
+ ) .
+
+<#test-bad-string>
+ a rdft:TestTurtleNegativeSyntax ;
+ mf:action <test-bad-string.ttl> ;
+ mf:name "test-bad-string" ;
+ mf:result <test-bad-string.nt> .
+
+<#test-bad-uri>
+ a rdft:TestTurtleNegativeSyntax ;
+ mf:action <test-bad-uri.ttl> ;
+ mf:name "test-bad-uri" ;
+ mf:result <test-bad-uri.nt> .
+
+<#test-bad-utf8>
+ a rdft:TestTurtleNegativeSyntax ;
+ mf:action <test-bad-utf8.ttl> ;
+ mf:name "test-bad-utf8" ;
+ mf:result <test-bad-utf8.nt> .