From 7903bdfed26f085f6d07d104ac458bc4319b1e32 Mon Sep 17 00:00:00 2001 From: Jamie Winsor Date: Sun, 4 Sep 2011 03:20:51 -0700 Subject: refactor factories and add #show tests for posts controller Do not want to cache classes, but do want to reload models after factory girl: http://groups.google.com/group/factory_girl/browse_thread/thread/daa24556d90c31fc http://stackoverflow.com/questions/5145165/associationtypemismatch-and-factorygirl rails_autolink was removed from Rails 3.1 and abstracted to an external gem fix display author name and post time on comment show fix namespace for thanking and moderated flash notices --- spec/support/factories/blog_posts.rb | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 spec/support/factories/blog_posts.rb (limited to 'spec/support/factories/blog_posts.rb') diff --git a/spec/support/factories/blog_posts.rb b/spec/support/factories/blog_posts.rb deleted file mode 100644 index 4586b36..0000000 --- a/spec/support/factories/blog_posts.rb +++ /dev/null @@ -1,9 +0,0 @@ -FactoryGirl.define do - factory :blog_post, :class => 'refinery/blog_post' do - sequence(:title) { |n| "Top #{n} Shopping Centers in Chicago" } - body "These are the top ten shopping centers in Chicago. You're going to read a long blog post about them. Come to peace with it." - draft false - tag_list "chicago, shopping, fun times" - published_at Time.now - end -end -- cgit v1.2.3