Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
OWL2YAMS
Commits
c8360b5ddef2
Commit
c8360b5d
authored
Oct 26, 2021
by
Fabien Amarger
Browse files
feat(test): Add attribute owl thing test
parent
2968990436f7
Pipeline
#90297
canceled with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
test/data/test_attribute_owl_thing.owl
0 → 100644
View file @
c8360b5d
@prefix : <http://loutre.fr/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
:FirstClass a owl:Class.
:SecondClass a owl:Class.
:toto a owl:DatatypeProperty;
rdfs:domain owl:Thing.
test/data/test_attribute_owl_thing.yams
0 → 100644
View file @
c8360b5d
from yams.buildobjs import *
class SecondClass(EntityType):
toto = String()
class FirstClass(EntityType):
toto = String()
test/test_owl2yams.py
View file @
c8360b5d
...
...
@@ -49,6 +49,12 @@
"test_relation_without_domain_range.yams"
,
)
def
test_transform_attribute_owl_thing
(
self
):
self
.
_load_owl_and_yams
(
"test_attribute_owl_thing.owl"
,
"test_attribute_owl_thing.yams"
,
)
def
test_raise_multi_class
(
self
):
with
self
.
assertRaises
(
ValueError
):
self
.
_load_owl_and_yams
(
"test_multi_class.owl"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment