Sha256: 02e82612dcff02035368910456a4568558a79fd72f682a41f8cd9d98b8d82666
Contents?: true
Size: 1.69 KB
Versions: 9
Compression:
Stored size: 1.69 KB
Contents
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper") describe Braintree::Xml::Rexml do describe "self.parse" do it "typecasts integers" do xml = "<root><foo type=\"integer\">123</foo></root>" expect(Braintree::Xml::Rexml.parse(xml)).to eq({"root"=>{"foo"=>{"__content__"=>"123", "type"=>"integer"}}}) end it "works with dashes or underscores" do xml = <<-END <root> <dash-es /> <under_scores /> </root> END expect(Braintree::Xml::Rexml.parse(xml)).to eq({"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 expect(Braintree::Xml::Rexml.parse(xml)).to eq({"root"=>{"a_nil_value"=>{"nil"=>"true"}, "an_empty_string"=>{}}}) end it "typecasts dates and times" do xml = <<-END <root> <created-at type="datetime">2009-10-28T10:19:49Z</created-at> </root> END expect(Braintree::Xml::Rexml.parse(xml)).to eq({"root"=>{"created-at"=>{"__content__"=>"2009-10-28T10:19:49Z", "type"=>"datetime"}}}) 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 expect(Braintree::Xml::Rexml.parse(xml)).to eq({"root"=>{"customers"=>{"type"=>"array", "customer"=>[{"name"=>{"__content__"=>"Adam"}}, {"name"=>{"__content__"=>"Ben"}}]}}}) end end end
Version data entries
9 entries across 9 versions & 1 rubygems