Sha256: 9735ff11301643dad1c928b28aed1f7863072737e31c8071ddaaf99b4834c918
Contents?: true
Size: 1.09 KB
Versions: 14
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' describe ONIX::Title do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "title.xml") @doc = Nokogiri::XML::Document.parse(File.read(file1)) @root = @doc.root end it "should correctly convert to a string" do t = ONIX::Title.from_xml(@root.to_s) t.to_xml.to_s[0,7].should eql("<Title>") end it "should provide read access to first level attributes" do t = ONIX::Title.from_xml(@root.to_s) t.title_type.should eql(1) t.title_text.should eql("Good Grief") t.subtitle.should eql("A Constructive Approach to the Problem of Loss") end it "should provide write access to first level attributes" do t = ONIX::Title.new t.title_type = 1 t.to_xml.to_s.include?("<TitleType>01</TitleType>").should be_true t.title_text = "Good Grief" t.to_xml.to_s.include?("<TitleText>Good Grief</TitleText>").should be_true t.subtitle = "Blah" t.to_xml.to_s.include?("<Subtitle>Blah</Subtitle>").should be_true end end
Version data entries
14 entries across 14 versions & 2 rubygems