Sha256: 745f2174cc2253bd9cbdf14d11071fba6396121be796fd0fc48a43c4efd49d09

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

# coding: utf-8

require File.dirname(__FILE__) + '/spec_helper.rb'

context "ONIX::MarketRepresentation" do

  before(:each) do
    data_path = File.join(File.dirname(__FILE__),"..","data")
    file1    = File.join(data_path, "market_representation.xml")
    @doc     = Nokogiri::XML::Document.parse(File.read(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("<MarketRepresentation>")
  end

  specify "should provide read access to first level attributes" 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 attributes" do
    rep = ONIX::MarketRepresentation.new

    rep.agent_name = "Rainbow Book Agencies"
    rep.to_xml.to_s.include?("<AgentName>Rainbow Book Agencies</AgentName>").should be_true

    rep.agent_role = 3
    rep.to_xml.to_s.include?("<AgentRole>03</AgentRole>").should be_true

  end

end


Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
onix-0.8.4 spec/market_representation_spec.rb
milkfarm-onix-0.8.6 spec/market_representation_spec.rb
milkfarm-onix-0.8.5 spec/market_representation_spec.rb