Sha256: 1f2578129017482f0f3f14f319832fc5d93afded870c2152bb2f3367c4ffc255

Contents?: true

Size: 793 Bytes

Versions: 6

Compression:

Stored size: 793 Bytes

Contents

=begin
{{> api_info}}
=end

require 'spec_helper'

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

  before(:each) do
    # uncomment below to setup host and base_path
    {{moduleName}}.configure do |c|
      c.host = "{{host}}"
      c.base_path = "{{contextPath}}"
    end
  end

  describe '#base_url' do
    it 'should have the default value' do
      # uncomment below to test default value of the base path
      expect(config.base_url).to eq("{{{basePath}}}")
    end

    it 'should remove trailing slashes' do
      [nil, '', '/', '//'].each do |base_path|
        config.base_path = base_path
        # uncomment below to test trailing slashes
        # expect(config.base_url).to eq("{{{basePath}}}")
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dropbox-sign-1.5.0 templates/configuration_spec.mustache
dropbox-sign-1.4.1 templates/configuration_spec.mustache
dropbox-sign-1.4.0 templates/configuration_spec.mustache
dropbox-sign-1.3.0 templates/configuration_spec.mustache
dropbox-sign-1.2.0 templates/configuration_spec.mustache
dropbox-sign-1.1.2 templates/configuration_spec.mustache