spec/punchblock/event/ringing_spec.rb in punchblock-1.9.4 vs spec/punchblock/event/ringing_spec.rb in punchblock-2.0.0.beta1
- 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 == Ringing
+ RayoNode.class_from_registration(:ringing, 'urn:xmpp:rayo:1').should be == described_class
end
describe "from a stanza" do
let :stanza do
<<-MESSAGE
@@ -18,25 +18,27 @@
<header name="X-customer-id" value="8877" />
</ringing>
MESSAGE
end
- subject { RayoNode.import parse_stanza(stanza).root, '9f00061', '1' }
+ subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' }
- it { should be_instance_of Ringing }
+ it { should be_instance_of described_class }
it_should_behave_like 'event'
- it_should_behave_like 'event_headers'
+ its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }
- its(:xmlns) { should be == 'urn:xmpp:rayo:1' }
+ context "with no headers provided" do
+ let(:stanza) { '<ringing xmlns="urn:xmpp:rayo:1"/>' }
+
+ its(:headers) { should == {} }
+ end
end
describe "when setting options in initializer" do
- subject do
- Ringing.new :headers => { :x_skill => "agent", :x_customer_id => "8877" }
- end
+ subject { described_class.new headers: { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }
- it_should_behave_like 'command_headers'
+ its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }
end
end
end
-end # Punchblock
+end