Sha256: 7bb5d725c070230f75be3af87342b46f62b7c500f98d5a797c7d5dd085248942
Contents?: true
Size: 1.09 KB
Versions: 6
Compression:
Stored size: 1.09 KB
Contents
FactoryGirl.define do factory :unpublished_section, class: Dhatu::Section do title "Section Title" sub_title "Section Sub Title" short_description "Short Description (cannot be too short). Minimum is 10 characters" long_description "Long Description No Size Limit. Actually set via a rich text editor" button_one_text "Button One" button_two_text "Button Two" button_one_link "www.domain.com/link_one" button_two_link "www.domain.com/link_two" end factory :published_section, parent: :unpublished_section do after :build do |e| e.publish end end factory :removed_section, parent: :unpublished_section do after :build do |e| e.remove end end factory :archived_section, parent: :unpublished_section do after :build do |e| e.archive end end factory :featured_section, parent: :published_section do after :build do |e| e.mark_as_featured end end factory :non_featured_section, parent: :published_section do after :build do |e| e.remove_from_featured end end end
Version data entries
6 entries across 6 versions & 1 rubygems