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

FactoryGirl.define do
	factory :area_code do
    sequence(:name) { |n| "AreaCode #{n}" }
    sequence(:area_code) { |n| "#{n}" }
    association :country
  end
end