diff options
author | David Robillard <d@drobilla.net> | 2021-08-12 22:28:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:07 -0500 |
commit | 1409f161793a289819df1f31eccb579b71f45475 (patch) | |
tree | 4076c291a397f0a0a2ea560305ee87c47810df33 /test/pretty/list-object.ttl | |
parent | 6ffe331cfc8af0735b263ab7af6f84b1b4418102 (diff) | |
download | serd-1409f161793a289819df1f31eccb579b71f45475.tar.gz serd-1409f161793a289819df1f31eccb579b71f45475.tar.bz2 serd-1409f161793a289819df1f31eccb579b71f45475.zip |
Fix pretty-printing nested empty lists and add test suite
The earlier "test" was just hitting the code without actually checking the
output. This new suite is a set of pretty-printed documents which serd must
reproduce from a model exactly to pass. This should make it easy to add cases
in the future, since each case is just a document, as it should look.
Diffstat (limited to 'test/pretty/list-object.ttl')
-rw-r--r-- | test/pretty/list-object.ttl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pretty/list-object.ttl b/test/pretty/list-object.ttl new file mode 100644 index 00000000..735d9df6 --- /dev/null +++ b/test/pretty/list-object.ttl @@ -0,0 +1,8 @@ +@prefix eg: <http://example.org/> . + +eg:s + eg:list ( + "apple" + "banana" + "cherry" + ) . |