Add N-Triples test with no whitespace between resources and trailing dot.
authorGregg Kellogg <gregg@kellogg-assoc.com>
Fri, 08 Nov 2013 11:58:50 -0800
changeset 1249 4f87cadb5b9e
parent 1248 acc1008ff2a6
child 1250 5bd2bbd9ceec
Add N-Triples test with no whitespace between resources and trailing dot.
rdf-turtle/tests-nt/manifest.ttl
rdf-turtle/tests-nt/minimal_whitespace.nt
--- a/rdf-turtle/tests-nt/manifest.ttl	Fri Nov 08 11:52:49 2013 -0800
+++ b/rdf-turtle/tests-nt/manifest.ttl	Fri Nov 08 11:58:50 2013 -0800
@@ -84,6 +84,7 @@
     <#langtagged_non_LONG>
     <#langtagged_LONG>
     <#lantag_with_subtag>
+    <#minimal_whitespace>
     ) .
 
 <#nt-syntax-file-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
@@ -550,3 +551,10 @@
    rdft:approval rdft:Proposed ;
    mf:action    <lantag_with_subtag.nt> ;
    .
+
+<#minimal_whitespace> rdf:type rdft:TestNTriplesPositiveSyntax ;
+   mf:name      "minimal_whitespace" ;
+   rdfs:comment "tests absense of whitespace between subject, predicate, object and end-of-statement" ;
+   rdft:approval rdft:Proposed ;
+   mf:action    <minimal_whitespace.nt> ;
+   .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rdf-turtle/tests-nt/minimal_whitespace.nt	Fri Nov 08 11:58:50 2013 -0800
@@ -0,0 +1,6 @@
+<http://example/s><http://example/p><http://example/o>.
+<http://example/s><http://example/p>"Alice".
+<http://example/s><http://example/p>_:o.
+_:s<http://example/p><http://example/o>.
+_:s<http://example/p>"Alice".
+_:s<http://example/p>_:bnode1.