Sha256: 10d7ea623353ecd6593d646d66838f0035c28b4744861298dedbb299edce5219

Contents?: true

Size: 841 Bytes

Versions: 4

Compression:

Stored size: 841 Bytes

Contents

# frozen_string_literal: true

require "spec_helper"

describe ArchivesSpace::Configuration do
  it "uses the default profile for configuration settings" do
    config = ArchivesSpace::Configuration.new
    expect(config.base_uri).to eq DEFAULT_BASE_URI
  end

  it "allows configuration settings to be provided" do
    config = ArchivesSpace::Configuration.new({
      base_uri: CUSTOM_BASE_URI
    })
    expect(config.base_uri).to eq CUSTOM_BASE_URI
  end

  it "allows the configuration properties to be updated" do
    config = ArchivesSpace::Configuration.new
    config.base_uri = CUSTOM_BASE_URI
    expect(config.base_uri).to eq CUSTOM_BASE_URI
  end

  it "ignores unrecognized configuration properties" do
    config = ArchivesSpace::Configuration.new({xyz: 123})
    expect { config.xyz }.to raise_error(NoMethodError)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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