aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2013-10-17 08:32:11 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2013-10-17 08:32:11 +0300
commit1ef84a1d5b55304f1a6e365c944ecc1d222ab8e3 (patch)
tree90fa714d05bb72fe35d402abd0ae52637b816663 /spec/factories
parent5ae082d79e554d3449083aa70ef64ef5d677759a (diff)
downloadrefinerycms-blog-1ef84a1d5b55304f1a6e365c944ecc1d222ab8e3.tar.gz
refinerycms-blog-1ef84a1d5b55304f1a6e365c944ecc1d222ab8e3.tar.bz2
refinerycms-blog-1ef84a1d5b55304f1a6e365c944ecc1d222ab8e3.zip
Don't set tag_list on the post factory - it's not a required attribute.
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/blog_posts.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/factories/blog_posts.rb b/spec/factories/blog_posts.rb
index ff4cf16..51c6b8a 100644
--- a/spec/factories/blog_posts.rb
+++ b/spec/factories/blog_posts.rb
@@ -3,7 +3,6 @@ FactoryGirl.define 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
author { FactoryGirl.create(:refinery_user) }