summaryrefslogtreecommitdiff
path: root/spec/factories/users/credit_card_validations.rb
blob: 099403477081ad5a65f4408ee44ee51bea67a632 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :credit_card_validation, class: 'Users::CreditCardValidation' do
    user

    credit_card_validated_at { Time.current }
  end
end