Sha256: a6907d98b875ffd78c0dc82842e5aa7660c7020922435b20de5dc09d24151bfe

Contents?: true

Size: 887 Bytes

Versions: 17

Compression:

Stored size: 887 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

        it { should be_instance_of described_class }

        it_should_behave_like 'event'

        its(:call_id) { should be == "x0yz4ye-lx7-6ai9njwvw8nsb" }
      end

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

        its(:call_id) { should be == 'abc123' }
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
punchblock-2.5.2 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.5.1 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.5.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.4.2 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.4.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.3.1 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.3.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.2.2 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.2.1 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.2.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.1.1 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.1.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.0.2 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.0.1 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.0.0 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.0.0.beta2 spec/punchblock/event/started_speaking_spec.rb
punchblock-2.0.0.beta1 spec/punchblock/event/started_speaking_spec.rb