Sha256: 6d807070cd21d27e82fde4c292ae78b7cf2cf3886cb52fc396e435cbc07c5b5a
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' context "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 specify "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 specify "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 specify "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
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
onix-0.8.4 | spec/title_spec.rb |
milkfarm-onix-0.8.6 | spec/title_spec.rb |
milkfarm-onix-0.8.5 | spec/title_spec.rb |