gitlab-org--gitlab-foss/spec/factories/emails.rb

15 lines
232 B
Ruby
Raw Normal View History

FactoryGirl.define do
factory :email do
user
email do
FFaker::Internet.email('alias')
end
factory :another_email do
email do
FFaker::Internet.email('another.alias')
end
end
end
end