osem-fcy/spec/views/admin/conferences/show.html.haml_spec.rb

14 lines
421 B
Ruby
Raw Normal View History

require 'spec_helper'
describe 'admin/conferences/show' do
2014-05-22 18:19:07 +02:00
it 'renders conference dashboard' do
2014-08-12 11:51:59 +03:00
conference = create(:conference, title: 'openSUSE')
assign :conference, conference
assign :program, conference.program
assign :conference_progress, conference.get_status
render template: 'admin/conferences/show.html.haml'
expect(rendered).to include("Dashboard for #{conference.title}")
end
end