Sha256: ccbc9c9ca0be7531915277400d08ebf2aa963f97aac038660b66455fcd9762b3

Contents?: true

Size: 949 Bytes

Versions: 25

Compression:

Stored size: 949 Bytes

Contents

module WebService
  module Response
    require 'test_helper'
    class EshelfTest < Test::Unit::TestCase
      def setup
        @base_url = "http://bobcatdev.library.nyu.edu"
        @isbn = "0143039008"
        @user_id = "N12162279"
        @institution = "NYU"
        @doc_id = "nyu_aleph000062856"
        @dedupmgr_id = "dedupmrg17343091"
        @basket_id ="210075761"
        @new_folder_name = "new folder"
      end

      def test_get_eshelf
        VCR.use_cassette('response get eshelf') {
          soap_action = :get_eshelf
          request = Exlibris::Primo::WebService::Request::GetEshelf.new(:user_id => @user_id, 
            :institution => @institution)
          client = Exlibris::Primo::WebService::Client::Eshelf.new(:base_url => @base_url)
          response = Exlibris::Primo::WebService::Response::GetEshelf.new(
            client.send(soap_action, request.to_xml), soap_action)
        }
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
exlibris-primo-2.1.1 test/web_service/response/eshelf_test.rb
exlibris-primo-2.1.0 test/web_service/response/eshelf_test.rb
exlibris-primo-2.0.0 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.9 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.8 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.7 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.6 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.5 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.4 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.3 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.2 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.1 test/web_service/response/eshelf_test.rb
exlibris-primo-1.1.0 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.11 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.10 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.9 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.8 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.7 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.6 test/web_service/response/eshelf_test.rb
exlibris-primo-1.0.5 test/web_service/response/eshelf_test.rb