Sha256: b36d11743809a887d6201f0c41f303a868dc215e6103eceade90ef005937df9c

Contents?: true

Size: 430 Bytes

Versions: 4

Compression:

Stored size: 430 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "archivesspace/client"
require "vcr"
require "webmock/rspec"

# GLOBAL VALUES FOR SPECS
DEFAULT_BASE_URI = "http://localhost:8089"
CUSTOM_BASE_URI = "https://archives.university.edu/api"

VCR.configure do |c|
  c.cassette_library_dir = "spec/fixtures/cassettes"
  c.hook_into :webmock
  c.default_cassette_options = {record: :once}
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
archivesspace-client-0.4.1 spec/spec_helper.rb
archivesspace-client-0.4.0 spec/spec_helper.rb
archivesspace-client-0.3.0 spec/spec_helper.rb
archivesspace-client-0.2.0 spec/spec_helper.rb