Sha256: 6ed0a75f07c044561319b8f9060140f43752ffc7066b90f67b6e194d86cc795b

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Adhearsion::Event::Unjoined do
  it 'registers itself' do
    expect(Adhearsion::Rayo::RayoNode.class_from_registration(:unjoined, 'urn:xmpp:rayo:1')).to eq(described_class)
  end

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

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

    it { is_expected.to be_instance_of described_class }

    it_should_behave_like 'event'

    describe '#call_uri' do
      subject { super().call_uri }
      it { is_expected.to eq('b') }
    end

    describe '#call_id' do
      subject { super().call_id }
      it { is_expected.to eq('b') }
    end

    describe '#mixer_name' do
      subject { super().mixer_name }
      it { is_expected.to eq('m') }
    end
  end

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

    describe '#call_id' do
      subject { super().call_id }
      it { is_expected.to eq('abc123') }
    end

    describe '#mixer_name' do
      subject { super().mixer_name }
      it { is_expected.to eq('blah') }
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
adhearsion-3.0.0.rc1 spec/adhearsion/event/unjoined_spec.rb
adhearsion-3.0.0.beta2 spec/adhearsion/event/unjoined_spec.rb
adhearsion-3.0.0.beta1 spec/adhearsion/event/unjoined_spec.rb