Welcome to mirror list, hosted at ThFree Co, Russian Federation.

emails.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9794772ac7d8d1de796d11fac264640b981ce8e2 (plain)
1
2
3
4
5
6
FactoryGirl.define do
  factory :email do
    user
    email { FFaker::Internet.email('alias') }
  end
end