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

FactoryGirl.define do
  factory :phone_model do
    sequence(:name) { |n| "Phone Model #{n}" }
    association :manufacturer
  end
end