osem-fcy/spec/factories/tickets.rb

14 lines
283 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :ticket do
2016-04-30 17:56:23 +02:00
title { "#{Faker::Hipster.word} Ticket" }
price_cents { 1000 }
price_currency { 'USD' }
visible { true }
factory :registration_ticket do
registration_ticket { true }
end
end
end