Sha256: 787fc8d96ec19fe0302c0ffb57a7cfbbf67de82556d28286b9f7a4f78180e264
Contents?: true
Size: 993 Bytes
Versions: 5
Compression:
Stored size: 993 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 attibutes" 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 attibutes" 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
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
onix-0.8.3 | spec/other_text_spec.rb |
milkfarm-onix-0.8.3 | spec/other_text_spec.rb |
onix-0.8.2 | spec/other_text_spec.rb |
onix-0.8.1 | spec/other_text_spec.rb |
onix-0.8.0 | spec/other_text_spec.rb |