Files
growstuff/spec/views/plantings/index.rss.builder_spec.rb
2013-02-01 13:37:33 +11:00

21 lines
444 B
Ruby

require 'spec_helper'
describe 'plantings/index.rss.builder', :type => "view" do
before(:each) do
controller.stub(:current_user) { nil }
assign(:recent_plantings, [
FactoryGirl.create(:planting)
])
render
end
it 'shows RSS feed title' do
rendered.should contain "Recent plantings from all members"
end
it 'shows content of posts' do
rendered.should contain "This is a *really* good plant."
end
end