Sha256: 08dff95b26a92fb60a8c43cf964ce5b9c9c18977a3319ea556f6433b65b9e310
Contents?: true
Size: 1.12 KB
Versions: 14
Compression:
Stored size: 1.12 KB
Contents
FactoryBot.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" association :page, factory: :page 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
14 entries across 14 versions & 1 rubygems