diff options
Diffstat (limited to 'spec/support/factories/blog_posts.rb')
-rw-r--r-- | spec/support/factories/blog_posts.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/support/factories/blog_posts.rb b/spec/support/factories/blog_posts.rb new file mode 100644 index 0000000..4586b36 --- /dev/null +++ b/spec/support/factories/blog_posts.rb @@ -0,0 +1,9 @@ +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 |