mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
9 lines
176 B
Ruby
9 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :property, class: Spree::Property do
|
|
name { 'baseball_cap_color' }
|
|
presentation { 'cap color' }
|
|
end
|
|
end
|