diff options
Diffstat (limited to 'test/w3c/TriGTests/trig-subm-13.trig')
-rw-r--r-- | test/w3c/TriGTests/trig-subm-13.trig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/w3c/TriGTests/trig-subm-13.trig b/test/w3c/TriGTests/trig-subm-13.trig new file mode 100644 index 00000000..8d1b44da --- /dev/null +++ b/test/w3c/TriGTests/trig-subm-13.trig @@ -0,0 +1,18 @@ +# Tests for rdf:_<numbers> and other qnames starting with _ +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix ex: <http://example.org/ex#> . +@prefix : <http://example.org/myprop#> . + +{ +ex:foo rdf:_1 "1" . +ex:foo rdf:_2 "2" . +ex:foo :_abc "def" . +ex:foo :_345 "678" . +} + +<http://example/graph> { +ex:foo rdf:_1 "1" . +ex:foo rdf:_2 "2" . +ex:foo :_abc "def" . +ex:foo :_345 "678" . +} |