Create route for vertical schedule and test confirming it works

This commit is contained in:
CactusPuppy 2021-04-24 18:54:58 -07:00
parent 6b186c074d
commit 82ac50786c
No known key found for this signature in database
GPG key ID: 4B33B0A3E15E2C82
2 changed files with 15 additions and 0 deletions

View file

@ -201,6 +201,7 @@ Osem::Application.routes.draw do
member do member do
get :events get :events
get :happening_now get :happening_now
get :vertical_schedule
end end
end end
end end

View file

@ -0,0 +1,14 @@
require 'spec_helper'
feature Schedule do
let!(:conference) { create(:conference) }
let!(:program) { conference.program }
context 'as a conference participant' do
scenario 'who visits the schedule page' do
before(:each) do
visit vertical_schedule_conference_schedule_path
end
end
end
end