2014-08-10 21:17:06 +03:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
factory :lecture do
|
|
|
|
title { |n| "Lecture #{n}" }
|
|
|
|
subtitle "Lorem Ipsum"
|
|
|
|
length 45
|
|
|
|
language "bg_BG"
|
|
|
|
abstract "An Abstract"
|
|
|
|
description "A Description"
|
|
|
|
notes "Some Notes"
|
2014-09-04 00:39:54 +03:00
|
|
|
agreement true
|
2014-08-10 21:17:06 +03:00
|
|
|
track
|
|
|
|
user
|
|
|
|
end
|
|
|
|
|
|
|
|
factory :workshop do
|
|
|
|
title { |n| "Workshop #{n}" }
|
|
|
|
subtitle "Lorem Ipsum"
|
|
|
|
length 60
|
|
|
|
language "bg_BG"
|
|
|
|
abstract "An Abstract"
|
|
|
|
description "A Description"
|
|
|
|
notes "Some Notes"
|
2014-09-04 00:39:54 +03:00
|
|
|
agreement true
|
2014-08-10 21:17:06 +03:00
|
|
|
track
|
|
|
|
user
|
|
|
|
end
|
|
|
|
end
|