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

12 lines
335 B
Ruby

require 'spec_helper'
describe 'admin/conference/show' do
it 'renders conference dashboard' do
conference = create(:conference, title: 'OpenSUSE')
assign :conference, conference
assign :conference_progress, conference.get_status
render
expect(rendered).to include("Dashboard for #{conference.title}")
end
end