Sha256: 5a205fb2e050c7048e93c6057225e0d21e242db3199b4ec88c6f7b79e324e70c
Contents?: true
Size: 1.45 KB
Versions: 14
Compression:
Stored size: 1.45 KB
Contents
# coding: utf-8 require File.dirname(__FILE__) + '/spec_helper.rb' describe ONIX::AudienceRange do before(:each) do data_path = File.join(File.dirname(__FILE__),"..","data") file1 = File.join(data_path, "audience_range.xml") @doc = Nokogiri::XML::Document.parse(File.read(file1)) @root = @doc.root end it "should correctly convert to a string" do aud = ONIX::AudienceRange.from_xml(@root.to_s) aud.to_xml.to_s[0,15].should eql("<AudienceRange>") end it "should provide read access to first level attributes" do aud = ONIX::AudienceRange.from_xml(@root.to_s) aud.audience_range_qualifier.should eql(11) aud.audience_range_precisions.size.should eql(2) aud.audience_range_precisions[0].should eql(3) aud.audience_range_precisions[1].should eql(4) aud.audience_range_values.size.should eql(2) aud.audience_range_values[0].should eql(3) aud.audience_range_values[1].should eql(5) end it "should provide write access to first level attributes" do aud = ONIX::AudienceRange.new aud.audience_range_qualifier = 12 aud.to_xml.to_s.include?("<AudienceRangeQualifier>12</AudienceRangeQualifier>").should be_true aud.audience_range_precisions[0] = 888 aud.to_xml.to_s.include?("<AudienceRangePrecision>888</AudienceRangePrecision>").should be_true aud.audience_range_values[0] = 999 aud.to_xml.to_s.include?("<AudienceRangeValue>999</AudienceRangeValue>").should be_true end end
Version data entries
14 entries across 14 versions & 2 rubygems