1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/spec/factories/task_lists.rb

8 lines
163 B
Ruby

FactoryGirl.define do
factory :task_list do
item_id { FactoryGirl.create(:bike).id }
item_type "Bike"
name { Faker::Lorem.words.join(" ")}
end
end