aboutsummaryrefslogtreecommitdiffstats
path: root/test/validate/bad-disjoint-with.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/validate/bad-disjoint-with.ttl')
-rw-r--r--test/validate/bad-disjoint-with.ttl18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/validate/bad-disjoint-with.ttl b/test/validate/bad-disjoint-with.ttl
new file mode 100644
index 00000000..c56937f5
--- /dev/null
+++ b/test/validate/bad-disjoint-with.ttl
@@ -0,0 +1,18 @@
+@prefix eg: <http://example.org/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+eg:Square
+ a owl:Class ;
+ rdfs:label "Square" ;
+ owl:disjointWith eg:Circle .
+
+eg:Circle
+ a owl:Class ;
+ rdfs:label "Circle" ;
+ owl:disjointWith eg:Square .
+
+eg:magicShape
+ a eg:Square ,
+ eg:Circle .
+