# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' context "ONIX::Imprint" do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "imprint.xml") @doc = Nokogiri::XML::Document.parse(File.read(file1)) @root = @doc.root end specify "should correctly convert to a string" do imp = ONIX::Imprint.from_xml(@root.to_s) imp.to_xml.to_s[0,9].should eql("") end specify "should provide read access to first level attributes" do imp = ONIX::Imprint.from_xml(@root.to_s) imp.imprint_name.should eql("Oxford University Press UK") end specify "should provide write access to first level attributes" do imp = ONIX::Imprint.new imp.imprint_name = "Paulist Press" imp.to_xml.to_s.include?("Paulist Press").should be_true imp.name_code_type = 1 imp.to_xml.to_s.include?("01").should be_true end end