Sha256: 5ea6fc88aad0d2eba0b5c65a4f255b711cf3320129cebcb5be55678486487161

Contents?: true

Size: 834 Bytes

Versions: 14

Compression:

Stored size: 834 Bytes

Contents

require 'spec_helper'

describe Pwwka::Handling do

  class HKlass
    include Pwwka::Handling
  end

  describe "adding handler methods" do

    let(:handling_class) { HKlass.new }
    let(:payload)        { { this: 'that'} }
    let(:routing_key)    { 'sf.merch.style.updated' }

    it "should respond to 'send_message!'" do
      expect(Pwwka::Transmitter).to receive(:send_message!).with(payload, routing_key, delayed: false, delay_by: nil)
      handling_class.send_message!(payload, routing_key, delayed: false, delay_by: nil)
    end

    it "should respond to 'send_message_safely'" do
      expect(Pwwka::Transmitter).to receive(:send_message_safely).with(payload, routing_key, delayed: true, delay_by: 4000)
      handling_class.send_message_safely(payload, routing_key, delayed: true, delay_by: 4000)
    end

  end


end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
pwwka-0.8.0 spec/handling_spec.rb
pwwka-0.8.0.RC1 spec/handling_spec.rb
pwwka-0.7.0.RC1 spec/handling_spec.rb
pwwka-0.7.0 spec/handling_spec.rb
pwwka-0.6.0 spec/handling_spec.rb
pwwka-0.5.2 spec/handling_spec.rb
pwwka-0.5.1 spec/handling_spec.rb
pwwka-0.5.0 spec/handling_spec.rb
pwwka-0.4.2 spec/handling_spec.rb
pwwka-0.4.1 spec/handling_spec.rb
pwwka-0.4.0 spec/handling_spec.rb
pwwka-0.3.2 spec/handling_spec.rb
pwwka-0.3.1 spec/handling_spec.rb
pwwka-0.3.0 spec/handling_spec.rb