diff options
Diffstat (limited to 'tests/rdfxml/ex-34.rdf')
-rw-r--r-- | tests/rdfxml/ex-34.rdf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/rdfxml/ex-34.rdf b/tests/rdfxml/ex-34.rdf new file mode 100644 index 0000000..25c132f --- /dev/null +++ b/tests/rdfxml/ex-34.rdf @@ -0,0 +1,19 @@ +<rdf:RDF xmlns:ex="http://www.example.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + + <!-- check daml:collection generates the right structure with + blank nodes inside --> + + <rdf:Description rdf:about="http://example.org/node1"> + <ex:prop1 rdf:parseType="daml:collection"> + <rdf:Description> + <ex:prop2 rdf:resource="http://example.org/node2" /> + </rdf:Description> + <rdf:Description> + <ex:prop3 rdf:resource="http://example.org/node3" /> + </rdf:Description> + </ex:prop1> + </rdf:Description> +</rdf:RDF> + + |