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