spec/message_response_spec.rb in cdyne-sms-notify-1.0.3 vs spec/message_response_spec.rb in cdyne-sms-notify-1.0.4
- old
+ new
@@ -7,10 +7,10 @@
r.text_id.should == nil
r.message.should == nil
end
it "should only contain attributes that describe a message response" do
- attrs = {:xmlns => 'foo', :StatusCode => '1'}
+ attrs = {"xmlns" => 'foo', "StatusCode" => '1'}
r = SmsNotify::MessageResponse.new(attrs)
r.respond_to?('xmlns').should be false
r.status_code.should == '1'
end
end