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

credit_card_validations.rb « users « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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