spec/punchblock/event/ringing_spec.rb in punchblock-2.5.2 vs spec/punchblock/event/ringing_spec.rb in punchblock-2.5.3

- old
+ new

@@ -4,11 +4,11 @@ module Punchblock class Event describe Ringing do it 'registers itself' do - RayoNode.class_from_registration(:ringing, 'urn:xmpp:rayo:1').should be == described_class + expect(RayoNode.class_from_registration(:ringing, 'urn:xmpp:rayo:1')).to eq(described_class) end describe "from a stanza" do let :stanza do <<-MESSAGE @@ -23,22 +23,32 @@ subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' } it { should be_instance_of described_class } it_should_behave_like 'event' - its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } + describe '#headers' do + subject { super().headers } + it { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } + end + context "with no headers provided" do let(:stanza) { '<ringing xmlns="urn:xmpp:rayo:1"/>' } - its(:headers) { should == {} } + describe '#headers' do + subject { super().headers } + it { should == {} } + end end end describe "when setting options in initializer" do subject { described_class.new headers: { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } - its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } + describe '#headers' do + subject { super().headers } + it { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } + end end end end end