mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
9 lines
277 B
Ruby
9 lines
277 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'home/index' do
|
|
it "renders _conference partial for each conference" do
|
|
assign(:current, [create(:conference), create(:conference)])
|
|
render
|
|
expect(view).to render_template(:partial => "_conference_details", :count => 2)
|
|
end
|
|
end
|