Sha256: 81737d823187300e02c5d4dced9af564673b80a09cd737e76a582a08ea1119f6
Contents?: true
Size: 376 Bytes
Versions: 16
Compression:
Stored size: 376 Bytes
Contents
# frozen_string_literal: true FactoryGirl.define do factory :workshop_price do price_description "Sample Price" price_cents 50000 price_currency 'EUR' trait :with_workshop do association :workshop end trait :with_recurring do recurring_amount 10000 recurring_period 30 # days recurring_number 5 end end end
Version data entries
16 entries across 16 versions & 1 rubygems