require "./spec_helper" # require "errors/muse_corrupt_pdf.cr" describe Muse::Dl::Book do it "should notice the unable to construct chapter PDF error" do f = "/tmp/chapter-2379787.pdf" File.delete(f) if File.exists? f expect_raises Muse::Dl::Errors::MuseCorruptPDF do Muse::Dl::Fetch.save_chapter("/tmp", "2379787", "NA") end end end