mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-31 06:31:41 +00:00
8 lines
132 B
Ruby
8 lines
132 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :taxon, class: Spree::Taxon do
|
|
name { 'Ruby on Rails' }
|
|
end
|
|
end
|