aboutsummaryrefslogtreecommitdiffstats
path: root/test/validate/bad-deprecated-class.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/validate/bad-deprecated-class.ttl')
-rw-r--r--test/validate/bad-deprecated-class.ttl12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/validate/bad-deprecated-class.ttl b/test/validate/bad-deprecated-class.ttl
new file mode 100644
index 00000000..51d76d8f
--- /dev/null
+++ b/test/validate/bad-deprecated-class.ttl
@@ -0,0 +1,12 @@
+@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 rdfs:Class ;
+ owl:deprecated true ;
+ rdfs:label "Square" .
+
+eg:square
+ a eg:Square .
+