require "./spec_helper" describe Muse::Dl::Book do it "it should parse the infobox" do html = <<-EOT

Additional Information

ISBN
9780813928517
Related ISBN
9780813928456
MARC Record
OCLC
755633557
Pages
432
Launched on MUSE
2012-01-01
Language
English
Open Access
No
EOT book = Muse::Dl::Book.new html book.info["ISBN"].should eq "9780813928517" book.info["Related ISBN"].should eq "9780813928456" book.info["OCLC"].should eq "755633557" book.info["Pages"].should eq "432" book.info["Launched on MUSE"].should eq "2012-01-01" book.info["Language"].should eq "English" book.info["Open Access"].should eq "No" book.info["DOI"].should eq "10.1353/book.68534" end end