Sha256: 332d48fdb4e523036f1edf6b04be13f310633c1027b804c26610108a86933f48
Contents?: true
Size: 955 Bytes
Versions: 23
Compression:
Stored size: 955 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 == StartedSpeaking end describe "from a stanza" do let :stanza do '<started-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 StartedSpeaking } it_should_behave_like 'event' its(: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 StartedSpeaking.new :call_id => 'abc123' end its(:call_id) { should be == 'abc123' } end end end end # Punchblock
Version data entries
23 entries across 23 versions & 1 rubygems