forked from bofh/fetsite
11 lines
206 B
Ruby
11 lines
206 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :lecturer do
|
|
name {"MyString"}
|
|
email {"MyString"}
|
|
oid {1}
|
|
picture {"MyString"}
|
|
end
|
|
end
|