Cross Reference: axiom_factory.rb
xref
: /
ontohub
/
spec
/
factories
/
axiom_factory.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
axiom_factory.rb revision b1d0d15e7476c0f890b75a59376b7fb7ae49e3ac
FactoryGirl.define
do
factory
:
axiom
do
association
:
ontology
,
factory
: :
single_ontology
name
{
FactoryGirl.generate
:
sentence_name
}
text
{
Faker
::
Lorem.sentence
}
after
(:
build
)
do
|
axiom
|
axiom.locid
=
"#{
axiom.ontology.locid
}//#{
axiom.name
}"
end
end
end