mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
10 lines
320 B
Ruby
10 lines
320 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'admin/conference/index' do
|
|
it 'renders all conference names with links' do
|
|
assign(:conferences, [create(:conference, title: 'OpenSUSE'), create(:conference)])
|
|
render
|
|
expect(rendered).to include('OpenSUSE')
|
|
expect(rendered).to include("The dog and pony show")
|
|
end
|
|
end
|