diff options
Diffstat (limited to 'test/factories/phone_books.rb')
-rw-r--r-- | test/factories/phone_books.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/factories/phone_books.rb b/test/factories/phone_books.rb new file mode 100644 index 0000000..4aa8d07 --- /dev/null +++ b/test/factories/phone_books.rb @@ -0,0 +1,6 @@ +# Read about factories at http://github.com/thoughtbot/factory_girl + +Factory.define :phone_book do |f| + f.sequence(:name) { |n| "Phone book #{n}" } + f.association :phone_bookable, :factory => :user +end |