FullCalendar controller init, FullCalendarFormatter service

This commit is contained in:
Ziyi 2021-04-24 19:21:07 -07:00 committed by CactusPuppy
parent 410012d6be
commit 5bc4a39c6c
No known key found for this signature in database
GPG key ID: 4B33B0A3E15E2C82
3 changed files with 32 additions and 0 deletions

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