osem-fcy/spec/factories/tickets.rb
siddhantbajaj 157c270497 Registration tickets to be set for registration period
Admin must create at least one registration ticket before creating registration period.
2017-08-22 15:20:37 +05:30

10 lines
220 B
Ruby

FactoryGirl.define do
factory :ticket do
title { "#{Faker::Hipster.word} Ticket" }
price_cents 1000
price_currency 'USD'
factory :registration_ticket do
registration_ticket true
end
end
end