Sha256: 95af156abd1d65b88310037bd1b14da35dafd8d3649422ec2ceb35f917460767

Contents?: true

Size: 979 Bytes

Versions: 1

Compression:

Stored size: 979 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

      describe "from a stanza" do
        let :stanza do
          '<stopped-speaking xmlns="urn:xmpp:rayo:1" call-id="x0yz4ye-lx7-6ai9njwvw8nsb"/>'
        end

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

        it { should be_instance_of StoppedSpeaking }

        it_should_behave_like 'event'

        its(:other_call_id) { should be == "x0yz4ye-lx7-6ai9njwvw8nsb" }
        its(:xmlns)         { should be == 'urn:xmpp:rayo:1' }
      end

      describe "when setting options in initializer" do
        subject do
          StoppedSpeaking.new :other_call_id => 'abc123'
        end

        its(:other_call_id) { should be == 'abc123' }
      end
    end
  end
end # Punchblock

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
punchblock-0.11.0 spec/punchblock/event/stopped_speaking_spec.rb