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

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

FactoryBot.define do
  factory :in_product_marketing_email, class: 'Users::InProductMarketingEmail' do
    user

    track { 'create' }
    series { 0 }
  end
end