aboutsummaryrefslogtreecommitdiffstats
path: root/features/support/factories/blog_comments.rb
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2011-08-03 13:54:07 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2011-08-03 13:54:07 +0300
commitfddcebd878a03f579bb3c1a3265fa9cc9ef427c0 (patch)
tree1f4a20daf9e6251aad23223da70aa3aea70ce66d /features/support/factories/blog_comments.rb
parent476ad3f15810455fd40cc8374af1a253471b296c (diff)
downloadrefinerycms-blog-fddcebd878a03f579bb3c1a3265fa9cc9ef427c0.tar.gz
refinerycms-blog-fddcebd878a03f579bb3c1a3265fa9cc9ef427c0.tar.bz2
refinerycms-blog-fddcebd878a03f579bb3c1a3265fa9cc9ef427c0.zip
Make those specs green again.
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