diff options
author | David Robillard <d@drobilla.net> | 2023-03-24 20:59:54 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:07 -0500 |
commit | 65cbb4a13f615658282677fcf04685bae63e893c (patch) | |
tree | b9c66e757cf28ce96906d3426300811645753173 /test/extra | |
parent | c661dbe50d7f634ec5b2863260f41f098fc9c882 (diff) | |
download | serd-65cbb4a13f615658282677fcf04685bae63e893c.tar.gz serd-65cbb4a13f615658282677fcf04685bae63e893c.tar.bz2 serd-65cbb4a13f615658282677fcf04685bae63e893c.zip |
Support writing all escapes in Turtle and TriG prefixed names
Diffstat (limited to 'test/extra')
-rw-r--r-- | test/extra/qualify/qualify-in.ttl | 3 | ||||
-rw-r--r-- | test/extra/qualify/qualify-out.ttl | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/test/extra/qualify/qualify-in.ttl b/test/extra/qualify/qualify-in.ttl index 04afc07f..b30e1721 100644 --- a/test/extra/qualify/qualify-in.ttl +++ b/test/extra/qualify/qualify-in.ttl @@ -6,5 +6,8 @@ <http://example.org/a-subject> <http://example.org/a-predicate> <http://example.org/a-object> . +<http://example.org/special-!#$%&'()*+,-./;=?@_~-chars> + <http://example.org/p> <http://example.org/o> . + <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://www.w3.org/2000/01/rdf-schema#label> "nil" . diff --git a/test/extra/qualify/qualify-out.ttl b/test/extra/qualify/qualify-out.ttl index f4dd15d4..79148017 100644 --- a/test/extra/qualify/qualify-out.ttl +++ b/test/extra/qualify/qualify-out.ttl @@ -3,8 +3,11 @@ eg:s eg:p eg:o . -<http://example.org/a-subject> - <http://example.org/a-predicate> <http://example.org/a-object> . +eg:a-subject + eg:a-predicate eg:a-object . + +eg:special-\!\#\$\%\&\'\(\)\*\+\,-.\/\;\=\?\@_\~-chars + eg:p eg:o . () <http://www.w3.org/2000/01/rdf-schema#label> "nil" . |