spec/punchblock/ref_spec.rb in punchblock-0.9.2 vs spec/punchblock/ref_spec.rb in punchblock-0.10.0

- old
+ new

@@ -1,11 +1,13 @@ +# encoding: utf-8 + require 'spec_helper' module Punchblock describe Ref do it 'registers itself' do - RayoNode.class_from_registration(:ref, 'urn:xmpp:rayo:1').should == Ref + RayoNode.class_from_registration(:ref, 'urn:xmpp:rayo:1').should be == Ref end describe "from a stanza" do let(:stanza) { "<ref id='fgh4590' xmlns='urn:xmpp:rayo:1' />" } @@ -13,15 +15,15 @@ it { should be_instance_of Ref } it_should_behave_like 'event' - its(:id) { should == 'fgh4590' } + its(:id) { should be == 'fgh4590' } end describe "when setting options in initializer" do subject { Ref.new :id => 'foo' } - its(:id) { should == 'foo' } + its(:id) { should be == 'foo' } end end end # Punchblock