Sha256: a8542191c61685691101760fe903d16f8987c4d93680e23620042e9b215dd3b5
Contents?: true
Size: 984 Bytes
Versions: 10
Compression:
Stored size: 984 Bytes
Contents
# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' describe ONIX::Price do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "price.xml") @doc = Nokogiri::XML::Document.parse(File.read(file1)) @root = @doc.root end it "should correctly convert to a string" do p = ONIX::Price.from_xml(@root.to_s) p.to_xml.to_s[0,7].should eql("<Price>") end it "should provide read access to first level attributes" do p = ONIX::Price.from_xml(@root.to_s) p.price_type_code.should eql(2) p.price_amount.should eql(BigDecimal.new("7.5")) end it "should provide write access to first level attributes" do p = ONIX::Price.new p.price_type_code = 1 p.to_xml.to_s.include?("<PriceTypeCode>01</PriceTypeCode>").should be_true p.price_amount = BigDecimal.new("7.5") p.to_xml.to_s.include?("<PriceAmount>7.5</PriceAmount>").should be_true end end
Version data entries
10 entries across 10 versions & 2 rubygems