Sha256: 6845987b2663a4ad018e7c17f735de6d6140007eff8024f6891ca049bafbba29
Contents?: true
Size: 995 Bytes
Versions: 3
Compression:
Stored size: 995 Bytes
Contents
# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' context "ONIX::OtherText" do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "other_text.xml") @doc = Nokogiri::XML::Document.parse(File.read(file1)) @root = @doc.root end specify "should correctly convert to a string" do ot = ONIX::OtherText.from_xml(@root.to_s) ot.to_xml.to_s[0,11].should eql("<OtherText>") end specify "should provide read access to first level attributes" do ot = ONIX::OtherText.from_xml(@root.to_s) ot.text_type_code.should eql(2) ot.text[0,7].should eql("A woman") end specify "should provide write access to first level attributes" do ot = ONIX::OtherText.new ot.text_type_code = 2 ot.to_xml.to_s.include?("<TextTypeCode>02</TextTypeCode>").should be_true ot.text = "James Healy" ot.to_xml.to_s.include?("<Text>James Healy</Text>").should be_true end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
onix-0.8.4 | spec/other_text_spec.rb |
milkfarm-onix-0.8.6 | spec/other_text_spec.rb |
milkfarm-onix-0.8.5 | spec/other_text_spec.rb |