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.

30 lines
1.2 KiB

  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_title: 'something',
  11. site_description: 'something',
  12. version_number: '1.0',
  13. source_url: 'https://github.com/tootsuite/mastodon',
  14. open_registrations: false,
  15. thumbnail: nil,
  16. closed_registrations_message: 'yes')
  17. assign(:instance_presenter, instance_presenter)
  18. render
  19. header_tags = view.content_for(:header_tags)
  20. expect(header_tags).to match(%r{<meta content=".+" property="og:title" />})
  21. expect(header_tags).to match(%r{<meta content="website" property="og:type" />})
  22. expect(header_tags).to match(%r{<meta content=".+" property="og:image" />})
  23. expect(header_tags).to match(%r{<meta content="http://.+" property="og:url" />})
  24. end
  25. end