Sha256: 746d1361772fe7d34088c19bd336dcd38d965cd984339ec0128ae0c17edbf2a3

Contents?: true

Size: 1.38 KB

Versions: 11

Compression:

Stored size: 1.38 KB

Contents

require 'spec_helper'

describe BatchEditsHelper, :type => :helper do

  describe "#render_check_all" do

    before do
      @document_list = ["doc1", "doc2"]
      @batch_size_on_other_page = 1
      @max_batch_size = 10
    end

    context "with my files" do
      it "should show the check all dropdown" do
        allow(helper).to receive(:params).and_return({ controller: "my/files" })
        allow(helper).to receive(:controller_name).and_return("batch_edits")
        expect(helper.render_check_all).to have_css("span.glyphicon-cog")
      end

      it "should show my action menu for my controller" do
        allow(helper).to receive(:params).and_return({ controller: "my" })
        allow(helper).to receive(:controller_name).and_return("my")
        expect(helper.render_check_all).not_to have_content("ABC")
      end
    end

    context "with my collections" do
      it "should not show the check all dropdown" do
        allow(helper).to receive(:params).and_return({ controller: "my/collections" })
        expect(helper.render_check_all).to be_nil
      end
    end

    context "with select all disabled" do
      it "should not show the check all dropdown" do
        allow(helper).to receive(:params).and_return({ controller: "foo" })
        assign(:disable_select_all, true)
        expect(helper.render_check_all).to have_css("input[disabled=disabled]")
      end
    end

  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
sufia-6.2.0 spec/helpers/batch_edits_helper_spec.rb
sufia-6.1.0 spec/helpers/batch_edits_helper_spec.rb
sufia-5.0.0 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0.rc4 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0.rc3 spec/helpers/batch_edits_helper_spec.rb
sufia-5.0.0.rc1 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0.rc2 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0.rc1 spec/helpers/batch_edits_helper_spec.rb
sufia-4.3.1 spec/helpers/batch_edits_helper_spec.rb
sufia-6.0.0.beta1 spec/helpers/batch_edits_helper_spec.rb