aboutsummaryrefslogtreecommitdiffstats
path: root/tests/TriGTests/trig-subm-10.trig
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TriGTests/trig-subm-10.trig')
-rw-r--r--tests/TriGTests/trig-subm-10.trig20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/TriGTests/trig-subm-10.trig b/tests/TriGTests/trig-subm-10.trig
deleted file mode 100644
index 23bd02de..00000000
--- a/tests/TriGTests/trig-subm-10.trig
+++ /dev/null
@@ -1,20 +0,0 @@
-# Test integer datatyped literals using an OWL cardinality constraint
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-
-# based on examples in the OWL Reference
-
-{
-_:hasParent a owl:ObjectProperty .
-
-[] a owl:Restriction ;
- owl:onProperty _:hasParent ;
- owl:maxCardinality 2 .
-}
-
-<http://example/graph> {
-_:hasParent a owl:ObjectProperty .
-
-[] a owl:Restriction ;
- owl:onProperty _:hasParent ;
- owl:maxCardinality 2 .
-}