spec/title_spec.rb in milkfarm-onix-0.8.6 vs spec/title_spec.rb in milkfarm-onix-0.8.7
- old
+ new
@@ -1,30 +1,30 @@
# coding: utf-8
require File.dirname(__FILE__) + '/spec_helper.rb'
-context "ONIX::Title" do
+describe ONIX::Title do
before(:each) do
data_path = File.join(File.dirname(__FILE__),"..","data")
file1 = File.join(data_path, "title.xml")
@doc = Nokogiri::XML::Document.parse(File.read(file1))
@root = @doc.root
end
- specify "should correctly convert to a string" do
+ it "should correctly convert to a string" do
t = ONIX::Title.from_xml(@root.to_s)
t.to_xml.to_s[0,7].should eql("<Title>")
end
- specify "should provide read access to first level attributes" do
+ it "should provide read access to first level attributes" do
t = ONIX::Title.from_xml(@root.to_s)
t.title_type.should eql(1)
t.title_text.should eql("Good Grief")
t.subtitle.should eql("A Constructive Approach to the Problem of Loss")
end
- specify "should provide write access to first level attributes" do
+ it "should provide write access to first level attributes" do
t = ONIX::Title.new
t.title_type = 1
t.to_xml.to_s.include?("<TitleType>01</TitleType>").should be_true