mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 22:21:11 +00:00
12 lines
319 B
Ruby
12 lines
319 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe 'layouts/application.haml' do
|
||
|
|
let(:conference) { create(:conference) }
|
||
|
|
|
||
|
|
it 'assigns a class to the body identifying the current conference' do
|
||
|
|
assign(:conference, conference)
|
||
|
|
render
|
||
|
|
expect(rendered).to have_selector("body.conference-#{conference.short_title}")
|
||
|
|
end
|
||
|
|
end
|