10 lines
189 B
Ruby
10 lines
189 B
Ruby
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
||
|
FactoryGirl.define do
|
||
|
factory :workshop_facilitator do
|
||
|
user_id 1
|
||
|
workshop_id 1
|
||
|
role "MyString"
|
||
|
end
|
||
|
end
|