Add N-Triples test with no whitespace between resources and trailing dot.
--- 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.