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