闭社主体 forked from https://github.com/tootsuite/mastodon
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.

28 lines
1.1 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. open_registrations: false,
  14. closed_registrations_message: 'yes')
  15. assign(:instance_presenter, instance_presenter)
  16. render
  17. header_tags = view.content_for(:header_tags)
  18. expect(header_tags).to match(%r{<meta content='.+' property='og:title'>})
  19. expect(header_tags).to match(%r{<meta content='website' property='og:type'>})
  20. expect(header_tags).to match(%r{<meta content='.+' property='og:image'>})
  21. expect(header_tags).to match(%r{<meta content='http://.+' property='og:url'>})
  22. end
  23. end