Sha256: 389a8735ceba8da18cc1d2f21aa74ff8e84b331810c8ffc216b98f619335d3c4

Contents?: true

Size: 1.29 KB

Versions: 16

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

describe 'spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb', type: :view do
  let(:p) { 'spotlight/sir_trevor/blocks/solr_documents_grid_block.html.erb' }
  let(:page) { double('Page') }
  let(:block) do
    SirTrevorRails::Blocks::SolrDocumentsGridBlock.new({ type: 'block', data: { title: 'Some title', text: 'Some text', 'text-align' => 'right' } }, page)
  end

  before do
    allow(block).to receive(:each_document).and_return([
                                                         [{}, SolrDocument.new(id: 1)],
                                                         [{}, SolrDocument.new(id: 2)],
                                                         [{}, SolrDocument.new(id: 3)]
                                                       ])
  end

  before do
    allow(view).to receive_messages(has_thumbnail?: true, render_thumbnail_tag: 'thumb')
  end

  it 'has a slideshow block' do
    render partial: p, locals: { solr_documents_grid_block: block }
    expect(rendered).to have_selector 'h3', text: 'Some title'
    expect(rendered).to have_content 'Some text'
    expect(rendered).to have_selector '.box', text: 'thumb', count: 3
    expect(rendered).to have_selector '.items-col.pull-left'
    expect(rendered).to have_selector '.text-col'
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
blacklight-spotlight-2.13.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.12.1 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.12.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.11.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.10.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.9.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.8.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.7.2 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.7.1 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.7.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.6.1.1 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.6.1 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.6.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.5.2 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.5.1 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb
blacklight-spotlight-2.5.0 spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb