parsley/spec/factories/task_items.rb

9 lines
133 B
Ruby
Raw Normal View History

2018-08-27 17:46:33 -05:00
FactoryBot.define do
factory :task_item do
task_list
name "MyString"
quantity "MyString"
2018-09-07 21:56:13 -05:00
completed false
2018-08-27 17:46:33 -05:00
end
end