Sha256: 98075f08cbef8d42eedc1e706be51998e19a8c6ae91a456b4d81b9364694b368

Contents?: true

Size: 740 Bytes

Versions: 1

Compression:

Stored size: 740 Bytes

Contents

# frozen_string_literal: true

RSpec.describe Blacklight::Solr::FacetPaginator do
  let(:f1) { Blacklight::Solr::Response::Facets::FacetItem.new(hits: '792', value: 'Book') }
  describe "#as_json" do
    subject { described_class.new([f1], offset: 0, limit: nil).as_json }
    it "should be well structured" do
      expect(subject).to eq("items" => [{"hits"=>"792", "value"=>"Book"}], "limit" => nil,
       "offset" => 0, "sort" => "index")
    end
  end

  describe '#sort' do
    it 'defaults to "count" if a limit is provided' do
      expect(described_class.new([], limit: 10).sort).to eq 'count'
    end

    it 'defaults to "index" if no limit is given' do
      expect(described_class.new([]).sort).to eq 'index'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blacklight-7.0.0.rc1 spec/models/blacklight/solr/facet_paginator_spec.rb