Sha256: 3cc641075353c8a85a43cf4ae5711da0d21a42c776afc160294b8bd7326aebea

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

# coding: utf-8

require File.dirname(__FILE__) + '/spec_helper.rb'

context "ONIX::Website" do

  before(:each) do
    data_path = File.join(File.dirname(__FILE__),"..","data")
    file1    = File.join(data_path, "website.xml")
    @doc     = Nokogiri::XML::Document.parse(File.read(file1))
    @root = @doc.root
  end

  specify "should correctly convert to a string" do
    web = ONIX::Website.from_xml(@root.to_s)
    web.to_xml.to_s[0,9].should eql("<Website>")
  end

  specify "should provide read access to first level attributes" do
    web = ONIX::Website.from_xml(@root.to_s)

    web.website_role.should eql(1)
    web.website_link.should eql("http://www.rainbowbooks.com.au")
  end

  specify "should provide write access to first level attributes" do
    web = ONIX::Website.new

    web.website_role = 2
    web.to_xml.to_s.include?("<WebsiteRole>02</WebsiteRole>").should be_true

    web.website_link = "http://www.yob.id.au"
    web.to_xml.to_s.include?("<WebsiteLink>http://www.yob.id.au</WebsiteLink>").should be_true

  end

end


Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
onix-0.8.4 spec/website_spec.rb
milkfarm-onix-0.8.6 spec/website_spec.rb
milkfarm-onix-0.8.5 spec/website_spec.rb