Sha256: 3cadca779da27d3ec626b95789420d05360a5c049ed6d74bb5044b542ccbd77d

Contents?: true

Size: 661 Bytes

Versions: 28

Compression:

Stored size: 661 Bytes

Contents

require "spec_helper"

describe Bunny::Channel, "#prefetch" do
  let(:connection) do
    c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed")
    c.start
    c
  end

  after :all do
    connection.close
  end


  subject do
    connection.create_channel
  end

  context "with a positive integer" do
    it "sets that prefetch level via basic.qos" do
      subject.prefetch(10).should be_instance_of(AMQ::Protocol::Basic::QosOk)
    end
  end

  context "with a negative integer" do
    it "raises an ArgumentError" do
      expect {
        subject.prefetch(-2)
      }.to raise_error(ArgumentError)
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
bunny-0.9.0.pre8 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre7 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre6 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre5 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre4 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre3 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre2 spec/higher_level_api/integration/basic_qos_spec.rb
bunny-0.9.0.pre1 spec/higher_level_api/integration/basic_qos_spec.rb