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