Sha256: 51ff8e3c098b6ea616a9d2e22316bccd1fd0dec471e6669d232619e240e59bc3

Contents?: true

Size: 925 Bytes

Versions: 18

Compression:

Stored size: 925 Bytes

Contents

require 'spec_helper'

describe "catalog/_index_gallery.html.erb", :type => :view do
  let(:blacklight_config) { Blacklight::Configuration.new }

  let(:document) { stub_model(::SolrDocument) }

  before do
    blacklight_config.view.gallery.partials = ['a', 'b']
    allow(view).to receive_messages(blacklight_config: blacklight_config)
    allow(view).to receive_messages(document: document)
    allow(view).to receive_messages(document_counter: 3, document_counter_with_offset: 3)
  end

  it "should have thumbnail and caption" do
    expect(view).to receive(:render_thumbnail_tag).with(document, {}, hash_including(:counter)).and_return('Thumbnail')
    expect(view).to receive(:render_document_partials).with(document, ['a', 'b'], document_counter: 3).and_return('Z')
    render
    expect(rendered).to have_selector '.thumbnail', text: 'Thumbnail'
    expect(rendered).to have_selector '.caption', text: 'Z'
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
blacklight-gallery-1.1.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.12.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-1.0.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.11.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.10.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.9.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.8.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.7.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.6.1 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.6.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.4.1 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.5.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.4.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.3.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.2.1 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.2.0 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.1.2 spec/views/catalog/_index_gallery.html.erb_spec.rb
blacklight-gallery-0.1.1 spec/views/catalog/_index_gallery.html.erb_spec.rb