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
85bc50c4fc39
Commit
85bc50c4
authored
Oct 26, 2021
by
Fabien Amarger
Browse files
feat(test): Add test relation
parent
5092cd03d985
Changes
3
Hide whitespace changes
Inline
Side-by-side
test/data/test_relation.owl
0 → 100644
View file @
85bc50c4
@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.
:rel1 a owl:ObjectProperty;
rdfs:domain :FirstClass;
rdfs:range :FirstClass.
test/data/test_relation.yams
0 → 100644
View file @
85bc50c4
from yams.buildobjs import *
class FirstClass(EntityType):
pass
class rel1(RelationDefinition):
subject = ('FirstClass',)
object = ('FirstClass',)
test/test_owl2yams.py
View file @
85bc50c4
...
...
@@ -31,6 +31,9 @@
def
test_transform_attribute
(
self
):
self
.
_load_owl_and_yams
(
"test_attribute.owl"
,
"test_attribute.yams"
)
def
test_transform_relation
(
self
):
self
.
_load_owl_and_yams
(
"test_relation.owl"
,
"test_relation.yams"
)
if
__name__
==
"__main__"
:
unittest
.
main
()
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