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-14.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-13.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-13.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-12.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-11.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-10.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-9.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-8.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-7.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-6.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-5.1.1 spec/configuration_spec.rb
purecloudplatformclientv2-5.1.0 spec/configuration_spec.rb
purecloudplatformclientv2-5.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-4.0.0 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.7 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.6 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.5 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.4 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.3 spec/configuration_spec.rb
purecloudplatformclientv2-3.1.2 spec/configuration_spec.rb