Cross Reference: distributed_ontology_spec.rb
xref
: /
ontohub
/
app
/
controllers
/
AuthnStatement.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
distributed_ontology_spec.rb revision 7c7a19761235efff584ee65a1c6dc4aa1735ff64
require
'spec_helper'
describe
DistributedOntology
do
context
'associations'
do
it
{
should
have_many
(:
children
)
}
end
context
'distributed ontology instance'
do
let
(:
ontology
)
do
create
:
distributed_ontology
,
iri
:
'
http://example.com/foo
'
end
it
'generate sub iri'
do
expect
(
ontology.iri
_for_child
(
'bar'
)
)
.
to
eq
(
'
http://example.com/foo?bar
'
)
end
it
'generate sub iri that already is an iri'
do
expect
(
ontology.iri
_for_child
(
'
http://example.com/dummy
'
)
)
.
to
eq
(
'
http://example.com/dummy
'
)
end
end
end