TokiTranslate/spec/factories/definitions.rb
2023-10-14 13:05:54 -04:00

8 lines
158 B
Ruby

FactoryBot.define do
factory :definition do
pos { "n" }
definition { "this is a definition" }
word_id { FactoryBot.create(:word).id }
end
end