Sha256: f0109e11a115a8f20cb2ea82ea2128bc767ceed36e3b8828e88a73c934c70599
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock class Event describe StoppedSpeaking do it 'registers itself' do expect(RayoNode.class_from_registration(:'stopped-speaking', 'urn:xmpp:rayo:1')).to eq(described_class) end describe "from a stanza" do let :stanza do '<stopped-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' describe '#call_id' do subject { super().call_id } it { should be == "x0yz4ye-lx7-6ai9njwvw8nsb" } end end describe "when setting options in initializer" do subject do described_class.new :call_id => 'abc123' end describe '#call_id' do subject { super().call_id } it { should be == 'abc123' } end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems