summaryrefslogtreecommitdiff
path: root/test/factories/conference_invitees.rb
blob: 4e1eb685cc405d51c81d9fa6f045e6331b6c8843 (plain)
1
2
3
4
5
6
7
8
# Read about factories at http://github.com/thoughtbot/factory_girl

Factory.define :conference_invitee do |f|
  f.phone_number { Factory.build(:phone_number) }
  f.association :conference
  f.speaker true
  f.moderator false
end