# coding: utf-8 $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib') require 'onix' context "ONIX::MarketRepresentation" do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "market_representation.xml") @doc = LibXML::XML::Document.file(file1) @root = @doc.root end specify "should correctly convert to a string" do rep = ONIX::MarketRepresentation.from_xml(@root.to_s) rep.to_xml.to_s[0,22].should eql("") end specify "should provide read access to first level attibutes" do rep = ONIX::MarketRepresentation.from_xml(@root.to_s) rep.agent_name.should eql("Allen & Unwin") rep.agent_role.should eql(7) end specify "should provide write access to first level attibutes" do rep = ONIX::MarketRepresentation.new rep.agent_name = "Rainbow Book Agencies" rep.to_xml.to_s.include?("Rainbow Book Agencies").should be_true rep.agent_role = 3 rep.to_xml.to_s.include?("03").should be_true end end