mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-30 11:47:57 -04:00
34 lines
857 B
Ruby
34 lines
857 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe 'comments/index.rss.haml' do
|
|
before do
|
|
controller.stub(:current_user) { nil }
|
|
@author = create(:member)
|
|
@post = create(:post)
|
|
assign(:comments, [
|
|
create(:comment, author: @author, commentable: @post),
|
|
create(:comment, author: @author, commentable: @post)
|
|
])
|
|
render
|
|
end
|
|
|
|
it 'shows RSS feed title' do
|
|
rendered.should have_content "Recent comments on all posts"
|
|
end
|
|
|
|
it 'shows item title' do
|
|
rendered.should have_content "Comment by #{@author.login_name}"
|
|
end
|
|
|
|
it 'escapes html for link to post' do
|
|
# it's then unescaped by 'render' so we don't actually look for <
|
|
rendered.to_s.should have_content '<a href='
|
|
end
|
|
|
|
it 'shows content of comments' do
|
|
rendered.should have_content "OMG LOL"
|
|
end
|
|
end
|