Sha256: d54f7cb546bca943c6843ad4fc4a6cb90bfc88abf54f57b18f115f0afb87eb66
Contents?: true
Size: 1012 Bytes
Versions: 17
Compression:
Stored size: 1012 Bytes
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock class Event describe Joined do it 'registers itself' do RayoNode.class_from_registration(:joined, 'urn:xmpp:rayo:1').should be == 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' its(:call_uri) { should be == 'b' } its(:call_id) { should be == 'b' } its(:mixer_name) { should be == 'm' } end describe "when setting options in initializer" do subject { described_class.new :call_uri => 'abc123', :mixer_name => 'blah' } its(:call_uri) { should be == 'abc123' } its(:call_id) { should be == 'abc123' } its(:mixer_name) { should be == 'blah' } end end end end
Version data entries
17 entries across 17 versions & 1 rubygems