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

FactoryGirl.define do
  factory :conference_invitee do
    phone_number { FactoryGirl.build(:phone_number) }
    association :conference
    speaker true
    moderator false
  end
end