Sha256: b0ae1ac5521886e26e95abce8c8b2e0ce5c125920b072aa690cb6bd3cf0d4f5c

Contents?: true

Size: 1.41 KB

Versions: 7

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  class Event
    describe Joined do
      it 'registers itself' do
        expect(RayoNode.class_from_registration(:joined, 'urn:xmpp:rayo:1')).to eq(described_class)
      end

      describe "from a stanza" do
        let(:stanza) { '<joined xmlns="urn:xmpp:rayo:1" call-uri="b" mixer-name="m" />' }

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

        it { should be_instance_of described_class }

        it_should_behave_like 'event'

        describe '#call_uri' do
          subject { super().call_uri }
          it { should be == 'b' }
        end

        describe '#call_id' do
          subject { super().call_id }
          it { should be == 'b' }
        end

        describe '#mixer_name' do
          subject { super().mixer_name }
          it { should be == 'm' }
        end
      end

      describe "when setting options in initializer" do
        subject { described_class.new :call_uri => 'abc123', :mixer_name => 'blah' }

        describe '#call_uri' do
          subject { super().call_uri }
          it { should be == 'abc123' }
        end

        describe '#call_id' do
          subject { super().call_id }
          it { should be == 'abc123' }
        end

        describe '#mixer_name' do
          subject { super().mixer_name }
          it { should be == 'blah' }
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
punchblock-2.7.5 spec/punchblock/event/joined_spec.rb
punchblock-2.7.3 spec/punchblock/event/joined_spec.rb
punchblock-2.7.2 spec/punchblock/event/joined_spec.rb
punchblock-2.7.1 spec/punchblock/event/joined_spec.rb
punchblock-2.7.0 spec/punchblock/event/joined_spec.rb
punchblock-2.6.0 spec/punchblock/event/joined_spec.rb
punchblock-2.5.3 spec/punchblock/event/joined_spec.rb