Sha256: 4dabaaa36d981359555bdf9ccb4c417a66cf17e29cd9ca0e0b0ef920e6d5d6b1
Contents?: true
Size: 822 Bytes
Versions: 26
Compression:
Stored size: 822 Bytes
Contents
FactoryBot.define do factory :base_cms_section, class: Spree::CmsSection do name { generate(:random_string) } association :cms_page, factory: :cms_feature_page factory :cms_hero_image_section do type { 'Spree::Cms::Sections::HeroImage' } end factory :cms_featured_article_section do type { 'Spree::Cms::Sections::FeaturedArticle' } end factory :cms_product_carousel_section do type { 'Spree::Cms::Sections::ProductCarousel' } end factory :cms_image_gallery_section do type { 'Spree::Cms::Sections::ImageGallery' } end factory :cms_side_by_side_images_section do type { 'Spree::Cms::Sections::SideBySideImages' } end factory :cms_rich_text_content_section do type { 'Spree::Cms::Sections::RichTextContent' } end end end
Version data entries
26 entries across 26 versions & 1 rubygems