diff options
Diffstat (limited to 'test/sort/input.trig')
-rw-r--r-- | test/sort/input.trig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/sort/input.trig b/test/sort/input.trig new file mode 100644 index 00000000..9561d9b8 --- /dev/null +++ b/test/sort/input.trig @@ -0,0 +1,22 @@ +@prefix eg: <http://example.org/> . + +eg:graph1 { + eg:s + a eg:Subject ; + eg:blank [ + a eg:Anonymous ; + eg:with eg:aProperty , + eg:orAnother + ] ; + eg:list ( + 1 + 2 + ) ; + eg:literal "s1" . +} + +eg:graph2 { + eg:a + a eg:OtherSubject ; + eg:b eg:c . +} |