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

11 lines
283 B
Ruby

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