You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
936 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe 'about/show.html.haml', without_verify_partial_doubles: true do
  4. before do
  5. allow(view).to receive(:site_hostname).and_return('example.com')
  6. allow(view).to receive(:site_title).and_return('example site')
  7. end
  8. it 'has valid open graph tags' do
  9. instance_presenter = double(:instance_presenter,
  10. site_description: 'something',
  11. open_registrations: false,
  12. closed_registrations_message: 'yes',
  13. )
  14. assign(:instance_presenter, instance_presenter)
  15. render
  16. header_tags = view.content_for(:header_tags)
  17. expect(header_tags).to match(%r{<meta content='.+' property='og:title'>})
  18. expect(header_tags).to match(%r{<meta content='website' property='og:type'>})
  19. expect(header_tags).to match(%r{<meta content='.+' property='og:image'>})
  20. expect(header_tags).to match(%r{<meta content='http://.+' property='og:url'>})
  21. end
  22. end