Cross Reference: task_factory.rb
xref
: /
ontohub
/
spec
/
factories
/
task_factory.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
FactoryGirl.define
do
factory
:
task
do
name
{
Faker
::
Lorem.words
(
3
)
.
join
(
' '
)
}
description
{
Faker
::
Lorem.sentences
(
3
)
.
join
(
' '
)
}
end
end