show.html.haml_spec.rb 970 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
# frozen_string_literal: true

require 'spec_helper'

describe 'search/show' do
  let(:search_term) { nil }

  before do
    stub_template "search/_category.html.haml" => 'Category Partial'
    stub_template "search/_results.html.haml" => 'Results Partial'

    @search_term = search_term

    render
  end

  context 'when the search page is opened' do
    it 'displays the title' do
      expect(rendered).to have_selector('h1.page-title', text: 'Search')
      expect(rendered).not_to have_selector('h1.page-title code')
    end

    it 'does not render partials' do
      expect(rendered).not_to render_template('search/_category')
      expect(rendered).not_to render_template('search/_results')
    end
  end

  context 'when search term is supplied' do
    let(:search_term) { 'Search Foo' }

    it 'renders partials' do
      expect(rendered).to render_template('search/_category')
      expect(rendered).to render_template('search/_results')
    end
  end
end