Sha256: 2a54bee02bea1eee9fb60a4039dd7da93ff82de75b5808e41a3c7ec1c8274ffd

Contents?: true

Size: 1.03 KB

Versions: 12

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  class Event
    describe Answered do
      it 'registers itself' do
        RayoNode.class_from_registration(:answered, 'urn:xmpp:rayo:1').should be == Answered
      end

      describe "from a stanza" do
        let :stanza do
          <<-MESSAGE
<answered xmlns='urn:xmpp:rayo:1'>
  <!-- Signaling (e.g. SIP) Headers -->
  <header name="X-skill" value="agent" />
  <header name="X-customer-id" value="8877" />
</answered>
          MESSAGE
        end

        subject { RayoNode.import parse_stanza(stanza).root, '9f00061', '1' }

        it { should be_instance_of Answered }

        it_should_behave_like 'event'
        it_should_behave_like 'event_headers'

        its(:xmlns) { should be == 'urn:xmpp:rayo:1' }
      end

      describe "when setting options in initializer" do
        subject do
          Answered.new :headers => { :x_skill => "agent", :x_customer_id => "8877" }
        end

        it_should_behave_like 'command_headers'
      end
    end
  end
end # Punchblock

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
punchblock-1.9.4 spec/punchblock/event/answered_spec.rb
punchblock-1.9.3 spec/punchblock/event/answered_spec.rb
punchblock-1.9.2 spec/punchblock/event/answered_spec.rb
punchblock-1.9.1 spec/punchblock/event/answered_spec.rb
punchblock-1.9.0 spec/punchblock/event/answered_spec.rb
punchblock-1.8.2 spec/punchblock/event/answered_spec.rb
punchblock-1.8.1 spec/punchblock/event/answered_spec.rb
punchblock-1.8.0 spec/punchblock/event/answered_spec.rb
punchblock-1.7.1 spec/punchblock/event/answered_spec.rb
punchblock-1.7.0 spec/punchblock/event/answered_spec.rb
punchblock-1.6.1 spec/punchblock/event/answered_spec.rb
punchblock-1.6.0 spec/punchblock/event/answered_spec.rb