mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
8 lines
163 B
Ruby
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
|