scinote-web/spec/factories/checklist_items.rb

10 lines
178 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :checklist_item do
2019-09-12 23:21:48 +08:00
text { Faker::Lorem.sentence(word_count: 10) }
checklist
checked { false }
end
end