Sha256: 5ddc538cf60efca76fd16cfc2077de2663a98d90fb1f374d9addc8ff2c4972a1

Contents?: true

Size: 609 Bytes

Versions: 143

Compression:

Stored size: 609 Bytes

Contents

require 'spec_helper'

describe PureCloud::Configuration do
  let(:config) { PureCloud::Configuration.default }

  before(:each) do
    PureCloud.configure do |c|
      c.host = 'petstore.swagger.io'
      c.base_path = 'v2'
    end
  end

  describe '#base_url' do
    it 'should have the default value' do
      expect(config.base_url).to eq('http://petstore.swagger.io/v2')
    end

    it 'should remove trailing slashes' do
      [nil, '', '/', '//'].each do |base_path|
        config.base_path = base_path
        expect(config.base_url).to eq('http://petstore.swagger.io')
      end
    end
  end
end

Version data entries

143 entries across 143 versions & 1 rubygems

Version Path
purecloudplatformclientv2-45.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-44.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-43.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-43.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-42.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-41.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-40.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-39.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-39.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-38.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-37.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-36.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-36.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-35.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-34.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-33.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-33.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-32.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-31.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-30.1.0 spec/configuration_spec.rb