Sha256: a9d10961d8ade33395829ec51c3fa7137688e2af3dcc92ef40625f42318f9c00

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe RenderConstraintsHelper do

  before do
    # the helper methods below infer paths from the current route
    controller.request.path_parameters["controller"] = 'catalog'
  end

  describe '#render_constraints_query' do
    it "should have a link relative to the current url" do
      helper.render_constraints_query(:q=>'foobar', :f=>{:type=>'journal'}).should have_selector "a[href='/catalog?f%5Btype%5D=journal']"
    end
  end

  describe '#render_filter_element' do
    before do
      @config = Blacklight::Configuration.new do |config|
        config.add_facet_field 'type'
      end
      helper.stub(:blacklight_config => @config)
    end
    it "should have a link relative to the current url" do
      result = helper.render_filter_element('type', ['journal'], {:q=>'biz'})
      result.size.should == 1
      # I'm not certain how the ampersand gets in there. It's not important.
      result.first.should have_selector "a[href='/catalog?&q=biz']"
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
blacklight-3.4.1 test_support/spec/helpers/render_constraints_helper_spec.rb
blacklight-3.4.0 test_support/spec/helpers/render_constraints_helper_spec.rb