TokiTranslate/spec/factories/definitions.rb
2023-10-24 23:47:01 -04:00

9 lines
210 B
Ruby

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