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

12 lines
283 B
Ruby
Raw Normal View History

require 'spec_helper'
2014-05-19 12:49:04 +05:30
describe 'admin/conference/show' do
2014-05-22 18:19:07 +02:00
it 'renders conference dashboard' do
@conference = create(:conference, title: 'OpenSUSE')
assign :conference, @conference
render
expect(rendered).to include("Dashboard for #{@conference.title}")
end
end