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