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