Fix snippet factory
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
118bd7178b
commit
bfebab1c10
1 changed files with 6 additions and 2 deletions
|
@ -5,10 +5,14 @@ FactoryGirl.define do
|
||||||
Faker::Lorem.sentence
|
Faker::Lorem.sentence
|
||||||
end
|
end
|
||||||
|
|
||||||
sequence :name, aliases: [:file_name] do
|
sequence :name do
|
||||||
Faker::Name.name
|
Faker::Name.name
|
||||||
end
|
end
|
||||||
|
|
||||||
|
sequence :file_name do
|
||||||
|
Faker::Internet.user_name
|
||||||
|
end
|
||||||
|
|
||||||
sequence(:url) { Faker::Internet.uri('http') }
|
sequence(:url) { Faker::Internet.uri('http') }
|
||||||
|
|
||||||
factory :user, aliases: [:author, :assignee, :owner, :creator] do
|
factory :user, aliases: [:author, :assignee, :owner, :creator] do
|
||||||
|
|
Loading…
Reference in a new issue