Sha256: 308c9c9ec6e502ddbbb8ab4edda6c806624cd751a2bc66699e9e5b2610a21639
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
FactoryGirl.define do sequence(:slug) {|n| "#{n}-a-sample-blog-post-title" } factory :unpublished_blog_post, class: Dhatu::BlogPost do title "A Sample Blog Post Title" author "Some Author Name" slug meta_description "Blog post meta description which explain the essence of the post." description "Some Blog Post Description which is not less than 10 characters." posted_at { Time.now - 4.hours } tags {{key1: "val1", key2: "val2"}} end factory :published_blog_post, parent: :unpublished_blog_post do after :build do |e| e.publish end end factory :removed_blog_post, parent: :unpublished_blog_post do after :build do |e| e.remove end end factory :archived_blog_post, parent: :unpublished_blog_post do after :build do |e| e.archive end end factory :featured_blog_post, parent: :published_blog_post do after :build do |e| e.mark_as_featured end end factory :non_featured_blog_post, parent: :published_blog_post do after :build do |e| e.remove_from_featured end end end
Version data entries
6 entries across 6 versions & 1 rubygems