mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
13 lines
421 B
Ruby
13 lines
421 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'admin/conferences/show' do
|
|
|
|
it 'renders conference dashboard' do
|
|
conference = create(:conference, title: 'openSUSE')
|
|
assign :conference, conference
|
|
assign :program, conference.program
|
|
assign :conference_progress, conference.get_status
|
|
render template: 'admin/conferences/show.html.haml'
|
|
expect(rendered).to include("Dashboard for #{conference.title}")
|
|
end
|
|
end
|