mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
12 lines
338 B
Ruby
12 lines
338 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'admin/conference/show' do
|
|
|
|
it 'renders conference details which are editable' do
|
|
@conference = create(:conference, title: 'OpenSUSE')
|
|
assign :conference, @conference
|
|
render
|
|
expect(rendered).to include('OpenSUSE')
|
|
expect(rendered).to include("#{@conference.contact_email}")
|
|
end
|
|
end
|