diff options
author | David Robillard <d@drobilla.net> | 2023-03-29 19:59:50 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-05 09:45:15 -0400 |
commit | f93c3fdd6c7d6ca61bec55d3c1ffae7e7c793913 (patch) | |
tree | 749ae66010fb5b8bfcf398c29ce252f9138cce5b /test/pretty | |
parent | dd777c54b7585823be1f977e9dd887a5110a74f3 (diff) | |
download | serd-f93c3fdd6c7d6ca61bec55d3c1ffae7e7c793913.tar.gz serd-f93c3fdd6c7d6ca61bec55d3c1ffae7e7c793913.tar.bz2 serd-f93c3fdd6c7d6ca61bec55d3c1ffae7e7c793913.zip |
Fix relative URI creation
Diffstat (limited to 'test/pretty')
-rw-r--r-- | test/pretty/manifest.ttl | 7 | ||||
-rw-r--r-- | test/pretty/relative-uris.ttl | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/pretty/manifest.ttl b/test/pretty/manifest.ttl index 1f653d65..69b951af 100644 --- a/test/pretty/manifest.ttl +++ b/test/pretty/manifest.ttl @@ -32,6 +32,7 @@ <#many-objects> <#named-graph> <#nested-list-object> + <#relative-uris> <#short-string-escapes> <#uri-escapes> <#nested-list-subject> @@ -193,6 +194,12 @@ mf:name "nested-list-subject" ; mf:result <nested-list-subject.ttl> . +<#relative-uris> + a rdft:TestTurtleEval ; + mf:action <relative-uris.ttl> ; + mf:name "relative-uris" ; + mf:result <relative-uris.ttl> . + <#short-string-escapes> a rdft:TestTurtleEval ; mf:action <short-string-escapes.ttl> ; diff --git a/test/pretty/relative-uris.ttl b/test/pretty/relative-uris.ttl new file mode 100644 index 00000000..397c7cf7 --- /dev/null +++ b/test/pretty/relative-uris.ttl @@ -0,0 +1,2 @@ +<http://example.org/s> + <http://example.org/p> <manifest.ttl> . |