diff options
Diffstat (limited to 'test/pretty/graph-abbreviation.trig')
-rw-r--r-- | test/pretty/graph-abbreviation.trig | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/test/pretty/graph-abbreviation.trig b/test/pretty/graph-abbreviation.trig deleted file mode 100644 index 8ec75f6e..00000000 --- a/test/pretty/graph-abbreviation.trig +++ /dev/null @@ -1,65 +0,0 @@ -@prefix : <http://example.org/> . -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . - -:graph { - :a - :b :c , - :d , - :e ; - :f :g , - :h ; - :i :j ; - :k :l . - - :s - a :Thing ; - :p1 :o1 , - [ - a :SubThing ; - :p2 :o2 - ] , [ - a :OtherSubThing ; - :p3 :o3 - ] ; - :p4 :o4 . - - [] - :isA :Blank . - - [] - :sameAs [] . - - [] - :blank [ - :nestedEmptyBlank [] ; - :nestedNonEmptyBlanks [ - rdf:value 1 - ] , [ - rdf:value 2 - ] - ] ; - :lists ( - 3 - 4 - ) . - - [] - :lists ( - 5 - 6 - ) . - - [] - :lists ( - [ - rdf:value 7 - ] [ - rdf:value 8 - ] - ) . -} - -:separateGraph { - :m - a :OtherThing . -} |