Sha256: 7b953830e7c57a52b868f2060aec42293be7d6b304246636768d9eda3f42a441
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
require 'test_helper' class RecordTest < ActiveSupport::TestCase def setup @rest_url = "http://aleph.library.nyu.edu:1891/rest-dlf" @aleph_doc_library = "NYU01" @aleph_doc_number = "000062856" @bogus_url = "http://library.nyu.edu/bogus" end # Test exception handling for bogus url test "bogus_response" do aleph_record = Exlibris::Aleph::Record.new(@aleph_doc_library, @aleph_doc_number, @bogus_url) assert_raise(RuntimeError) { aleph_record.bib } assert_raise(RuntimeError) { aleph_record.holdings } assert_raise(MultiXml::ParseError) { aleph_record.items } end # Test record. test "record" do aleph_record = Exlibris::Aleph::Record.new(@aleph_doc_library, @aleph_doc_number, @rest_url) bib = aleph_record.bib assert_nil(aleph_record.error, "Failure in #{aleph_record.class} while calling bib: #{aleph_record.error}") holdings = aleph_record.holdings assert_nil(aleph_record.error, "Failure in #{aleph_record.class} while calling holdings: #{aleph_record.error}") items = aleph_record.items assert_nil(aleph_record.error, "Failure in #{aleph_record.class} while calling items: #{aleph_record.error}") end end
Version data entries
5 entries across 5 versions & 1 rubygems