summaryrefslogtreecommitdiff
path: root/spec/factories/users/in_product_marketing_email.rb
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