blob: b839d02e18ec77a02628dbe57ed7ef0b35956f22 (
plain) (
tree)
|
|
FactoryGirl.define do
factory :blog_post, :class => Refinery::BlogPost 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
factory :blog_post_draft do
draft true
end
end
end
|