summaryrefslogtreecommitdiffstats
path: root/tests/trig/bug370.trig
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trig/bug370.trig')
-rw-r--r--tests/trig/bug370.trig27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/trig/bug370.trig b/tests/trig/bug370.trig
new file mode 100644
index 0000000..2cf4c90
--- /dev/null
+++ b/tests/trig/bug370.trig
@@ -0,0 +1,27 @@
+# Issue #0000370 http://bugs.librdf.org/mantis/bug_change_status_page.php
+#
+# rapper -i trig --show-graphs bug370.trig http://mmt.me.uk/examples/rdf/trig1.tt
+#
+
+@base <http://mmt.me.uk/examples/rdf/trig1.ttl> .
+
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix foo: <http://example.com/foo/> .
+@prefix : <http://example.com/lame/> .
+
+:romeo a foaf:Person ;
+ foaf:name "Romeo Montague".
+
+:juliet a foaf:Person ;
+ foaf:name "Juliet Capulet" .
+
+:juliet foaf:gender "female" .
+
+:reality {
+ :romeo foo:loves :juliet . }
+
+:alternative {
+ :romeo foo:hates :juliet . }
+
+:romeo foaf:gender "male" .