summaryrefslogtreecommitdiff
path: root/test/factories/countries.rb
blob: 99caab5215c385cf56e11c92520f9396e63a2c4c (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 :country do
    sequence(:name) { |n| "Country #{n}" }
    sequence(:country_code) { |n| "#{n}" }
    sequence(:international_call_prefix) { |n| "#{n}" }
    sequence(:trunk_prefix) { |n| "#{n}" }
  end
end