2014-05-19 21:21:06 +05:30
|
|
|
require 'spec_helper'
|
2014-05-19 21:25:42 +05:30
|
|
|
describe 'conference/show.html.haml' do
|
2014-05-19 21:21:06 +05:30
|
|
|
it 'renders conference details' do
|
2014-05-26 13:51:03 +05:30
|
|
|
@sponsorship_registration = create(:sponsorship_registration)
|
|
|
|
|
@conference = @sponsorship_registration.conference
|
2014-05-19 21:21:06 +05:30
|
|
|
assign :conference, @conference
|
|
|
|
|
render
|
2014-05-26 13:51:03 +05:30
|
|
|
expect(view).to render_template(:partial => "conference/_sponsor")
|
|
|
|
|
expect(rendered).to include("#{@sponsorship_registration.sponsorship_level.title}")
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|
2014-05-19 21:25:42 +05:30
|
|
|
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|