mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
11 lines
341 B
Ruby
11 lines
341 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'admin/conferences/edit' do
|
|
|
|
it 'renders conference details which are editable' do
|
|
@conference = create(:conference, title: 'openSUSE')
|
|
assign :conference, @conference
|
|
render template: 'admin/conferences/edit.html.haml'
|
|
expect(rendered).to have_selector("input[value='openSUSE']")
|
|
end
|
|
end
|