Sha256: 24bc341460d0b1eb6469f37304c41652a53b24acf4d65f806b8e9053a493d93c
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
require File.dirname(__FILE__) + "/../../spec_helper" describe Braintree::Xml::Parser do describe "self.hash_from_xml" do it "typecasts integers" do xml = "<root><foo type=\"integer\">123</foo></root>" xml.should parse_to(:root => {:foo => 123}) end it "works with dashes or underscores" do xml = <<-END <root> <dash-es /> <under_scores /> </root> END xml.should parse_to(:root=>{:dash_es=>"", :under_scores=>""}) end it "uses nil if nil=true, otherwise uses empty string" do xml = <<-END <root> <a_nil_value nil="true"></a_nil_value> <an_empty_string></an_empty_string> </root> END xml.should parse_to(:root => {:a_nil_value => nil, :an_empty_string => ""}) end it "typecasts datetimes" do xml = <<-END <root> <created-at type="datetime">2009-10-28T10:19:49Z</created-at> </root> END xml.should parse_to(:root => {:created_at => Time.utc(2009, 10, 28, 10, 19, 49)}) end it "builds an array if type=array" do xml = <<-END <root> <customers type="array"> <customer><name>Adam</name></customer> <customer><name>Ben</name></customer> </customers> </root> END xml.should parse_to(:root => {:customers => [{:name => "Adam"}, {:name => "Ben"}]}) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
braintree-2.6.0 | spec/unit/braintree/xml/parser_spec.rb |
braintree-2.5.2 | spec/unit/braintree/xml/parser_spec.rb |
braintree-2.5.1 | spec/unit/braintree/xml/parser_spec.rb |