diff options
Diffstat (limited to 'test/factories/area_codes.rb')
-rw-r--r-- | test/factories/area_codes.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/factories/area_codes.rb b/test/factories/area_codes.rb new file mode 100644 index 0000000..87b2271 --- /dev/null +++ b/test/factories/area_codes.rb @@ -0,0 +1,7 @@ +# Read about factories at http://github.com/thoughtbot/factory_girl + +Factory.define :area_code do |f| + f.sequence(:name) { |n| "AreaCode #{n}" } + f.sequence(:area_code) { |n| "#{n}" } + f.association :country +end
\ No newline at end of file |