mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 10:45:04 -04:00
29 lines
717 B
Ruby
29 lines
717 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe 'layouts/_head.html.haml', type: "view" do
|
|
before do
|
|
render
|
|
end
|
|
|
|
it 'has a Posts RSS feed' do
|
|
posts_rss = url_for(controller: 'posts', format: 'rss', only_path: false)
|
|
assert_select "head>link[href='#{posts_rss}']"
|
|
end
|
|
|
|
it 'has a Crops RSS feed' do
|
|
crops_rss = url_for(controller: 'crops', format: 'rss', only_path: false)
|
|
assert_select "head>link[href='#{crops_rss}']"
|
|
end
|
|
|
|
it 'has a Plantings RSS feed' do
|
|
plantings_rss = url_for(controller: 'plantings', format: 'rss', only_path: false)
|
|
assert_select "head>link[href='#{plantings_rss}']"
|
|
end
|
|
|
|
it 'has a title' do
|
|
assert_select "head>title"
|
|
end
|
|
end
|