Conflicts:
	Gemfile
	Gemfile.lock
This commit is contained in:
Graham Kaplan
2014-04-05 19:27:05 -07:00
91 changed files with 1409 additions and 103 deletions
+8
View File
@@ -0,0 +1,8 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :event_type do
slug "MyString"
info "MyText"
end
end
+14
View File
@@ -0,0 +1,14 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :event do
title "MyString"
slug "MyString"
event_type_id 1
conference ""
info "MyText"
location ""
start_time "2014-03-15 12:32:41"
end_time "2014-03-15 12:32:41"
end
end
+9
View File
@@ -0,0 +1,9 @@
# 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
@@ -0,0 +1,9 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :workshop_requested_resource do
workshop_id 1
workshop_resource_id 1
status "MyString"
end
end
+16
View File
@@ -0,0 +1,16 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :workshop do
title "MyString"
slug "MyString"
info "MyText"
conference_id 1
workshop_stream_id 1
workshop_presentation_style 1
min_facilitators 1
location_id 1
start_time "2014-03-13 20:56:47"
end_time "2014-03-13 20:56:47"
end
end