aboutsummaryrefslogtreecommitdiffstats
path: root/features/support/factories/blog_comments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/support/factories/blog_comments.rb')
-rw-r--r--features/support/factories/blog_comments.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/features/support/factories/blog_comments.rb b/features/support/factories/blog_comments.rb
deleted file mode 100644
index 1c05190..0000000
--- a/features/support/factories/blog_comments.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-require 'factory_girl'
-
-Factory.define :blog_comment, :class => 'refinery/blog_comment' do |f|
- f.name "Joe Commenter"
- f.sequence(:email) { |n| "person#{n}@example.com" }
- f.body "Which one is the best for picking up new shoes?"
- f.association :post, :factory => :blog_post
-end