diff options
author | David Robillard <d@drobilla.net> | 2021-04-09 15:41:36 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-04-09 16:15:00 -0400 |
commit | a627bf523eba114b0e2466c77bd379d17c7195c6 (patch) | |
tree | c0951958a93da739005ffab2ab5b216cb5eef8ec /test/lax/manifest.ttl | |
parent | 36f1cecc1fdb803bf04d2ab60bd13dd257a9e525 (diff) | |
download | serd-a627bf523eba114b0e2466c77bd379d17c7195c6.tar.gz serd-a627bf523eba114b0e2466c77bd379d17c7195c6.tar.bz2 serd-a627bf523eba114b0e2466c77bd379d17c7195c6.zip |
Write statements with invalid URI characters in lax mode
Diffstat (limited to 'test/lax/manifest.ttl')
-rw-r--r-- | test/lax/manifest.ttl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lax/manifest.ttl b/test/lax/manifest.ttl index e3b11ff4..0cfdb776 100644 --- a/test/lax/manifest.ttl +++ b/test/lax/manifest.ttl @@ -7,10 +7,17 @@ rdf:type mf:Manifest ; rdfs:comment "Serd lax syntax test cases" ; mf:entries ( + <#test-bad-string> <#test-bad-uri> <#test-bad-utf8> ) . +<#test-bad-string> + rdf:type rdft:TestTurtleNegativeSyntax ; + mf:name "test-bad-string" ; + mf:action <test-bad-string.ttl> ; + mf:result <test-bad-string.nt> . + <#test-bad-uri> rdf:type rdft:TestTurtleNegativeSyntax ; mf:name "test-bad-uri" ; |