Sha256: 79cb9946fdaebe9bb53953d8b10b8e90aad0a3ef0bbed0eb593099f4b3bb5da8

Contents?: true

Size: 932 Bytes

Versions: 3

Compression:

Stored size: 932 Bytes

Contents

# coding: utf-8

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

context "ONIX::Series" do

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

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

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

    series.title_of_series.should eql("Citizens and Their Governments")
  end

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

    series.title_of_series = "Cool Science Careers"
    series.to_xml.to_s.include?("<TitleOfSeries>Cool Science Careers</TitleOfSeries>").should be_true
  end

end

Version data entries

3 entries across 3 versions & 2 rubygems

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