mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
366 B
Ruby
14 lines
366 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'admin/conference/new' do
|
|
let(:conference) { build(:conference) }
|
|
|
|
it 'renders the new template for the conference' do
|
|
assign(:conference, Conference.new)
|
|
render
|
|
expect(rendered).to include('Basic Information')
|
|
assign(:conference, conference)
|
|
render
|
|
expect(rendered).to include(conference.title)
|
|
end
|
|
end
|