Sha256: 3d36080d22237f69aa66d8edc61b41a0b39a9d226f1b5fd7e944dea6c2eb8d75

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

require 'spec_helper'

describe "Alternate Controller Behaviors" do
  it "should have the correct per-page form" do
    visit alternate_index_path
    page.should have_selector("form[action='#{alternate_index_url}']")
    fill_in "q", :with=>"history"
    click_button 'search'
    expect(current_path).to match /#{alternate_index_path}/
    within "#per_page-dropdown .dropdown-menu" do
      click_on '10 per page'
    end
    expect(current_path).to match /#{alternate_index_path}/
  end

  it "should have the correct search field form" do
    visit alternate_index_path
    page.should have_selector("form[action='#{alternate_index_url}']")
    fill_in "q", :with=>"history"
    click_button 'search'
    expect(current_path).to match /#{alternate_index_path}/
    click_on 'relevance'
    expect(current_path).to match /#{alternate_index_path}/
  end

  it "should display document thumbnails" do
    visit alternate_index_path
    page.should have_selector("form[action='#{alternate_index_url}']")
    fill_in "q", :with=>"history"
    click_button 'search'
    expect(page).to have_selector ".document-thumbnail"
    expect(page).to have_selector ".document-thumbnail a[data-context-href]"
    expect(page).to have_selector ".document-thumbnail a img"

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
blacklight-5.5.1 spec/features/alternate_controller_spec.rb
blacklight-5.5.0 spec/features/alternate_controller_spec.rb
blacklight-5.4.0 spec/features/alternate_controller_spec.rb
blacklight-5.4.0.rc1 spec/features/alternate_controller_spec.rb
blacklight-5.3.0 spec/features/alternate_controller_spec.rb
blacklight-5.2.0 spec/features/alternate_controller_spec.rb