Sha256: 2ebcc4de9a0a24a4537bf717e7dfe56fb22414a015fde5bf99320df4e74872f9
Contents?: true
Size: 619 Bytes
Versions: 33
Compression:
Stored size: 619 Bytes
Contents
FactoryBot.define do factory :property, class: Spree::Property do name { 'baseball_cap_color' } presentation { 'cap color' } trait :filterable do filterable { true } end trait :brand do name { 'brand' } presentation { 'Brand' } filter_param { 'brand' } end trait :manufacturer do name { 'manufacturer' } presentation { 'Manufacturer' } filter_param { 'manufacturer' } end trait :material do name { 'material' } presentation { 'Material' } filter_param { 'material' } end end end
Version data entries
33 entries across 33 versions & 1 rubygems