* Consistent route/model/controller/view layout * Get rid of unused photos, speakers, dietchoices, social_events controllers * Drop unused :public from Rooms and :description from CallForPapers
8 lines
193 B
Ruby
8 lines
193 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :call_for_paper do
|
|
start_date { 1.day.ago }
|
|
end_date { 7.days.from_now }
|
|
end
|
|
end
|