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

user_canonical_emails.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0161d25c525b93f9e1d17ba5bd7ba512f7949c03 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :user_canonical_email do
    user
    canonical_email { user.email }
  end
end