Files
growstuff/spec/features/footer_spec.rb
Daniel O'Connor 5d112e9134 Rubocop: Capybara/RSpec/HaveSelector (#4539)
* Rubocop: Capybara/RSpec/HaveSelector

* Rubocop: Capybara/RSpec/HaveSelector
2026-04-23 22:45:58 +09:30

19 lines
436 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe "footer" do
before { visit root_path }
it "footer is on home page" do
expect(page).to have_css 'footer'
end
it 'has the Open Service link and graphic' do
expect(page).to have_css 'a[href="https://opendefinition.org/ossd/"]'
end
# NB: not testing specific content in the footer since I'm going to put them
# in the CMS and they'll be variable.
end