Sha256: 7abb623256f7fa0e5b0255393b1fbb8a916e9ccb5254e4087425c2db9832ea2a

Contents?: true

Size: 641 Bytes

Versions: 66

Compression:

Stored size: 641 Bytes

Contents

require 'spec_helper'

describe ActiveFedora::Config do
  context "with a single fedora instance" do
    let(:yaml) { Psych.load(File.read('spec/fixtures/rails_root/config/fedora.yml')) }
    let(:section) { 'test' }
    let(:conf) { described_class.new(yaml[section]) }

    describe "#credentials" do
      subject { conf.credentials }
      it { is_expected.to eq(url: 'http://testhost.com:8983/fedora', user: 'fedoraAdmin', password: 'fedoraAdmin') }
      describe "with SSL options" do
        let(:section) { 'test_ssl' }
        its([:ssl]) { is_expected.to eq(verify: false, ca_path: '/path/to/certs') }
      end
    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
active-fedora-9.10.1 spec/unit/config_spec.rb
active-fedora-9.10.0 spec/unit/config_spec.rb
active-fedora-9.10.0.pre2 spec/unit/config_spec.rb
active-fedora-9.10.0.pre1 spec/unit/config_spec.rb
active-fedora-9.9.1 spec/unit/config_spec.rb
active-fedora-9.9.0 spec/unit/config_spec.rb