1
0

show.html.haml_spec.rb 936 B

123456789101112131415161718192021222324252627
  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