Files
growstuff/spec/features/rss/comments_spec.rb
2019-06-16 10:30:09 +12:00

14 lines
367 B
Ruby

require 'rails_helper'
describe 'Comments RSS feed' do
it 'The index feed exists' do
visit comments_path(format: 'rss')
# expect(page.status_code).to equal 200
end
it 'The index title is what we expect' do
visit comments_path(format: 'rss')
expect(page).to have_content "Recent comments on all posts (#{ENV['GROWSTUFF_SITE_NAME']})"
end
end