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

Factory.define :country do |f|
  f.sequence(:name) { |n| "Country #{n}" }
  f.sequence(:country_code) { |n| "#{n}" }
  f.sequence(:international_call_prefix) { |n| "#{n}" }
  f.sequence(:trunk_prefix) { |n| "#{n}" }
end