forked from loafle/openapi-generator-original
30 lines
652 B
Plaintext
30 lines
652 B
Plaintext
=begin
|
|
{{> api_info}}
|
|
=end
|
|
|
|
require 'spec_helper'
|
|
|
|
describe {{moduleName}}::Configuration do
|
|
let(:config) { {{moduleName}}::Configuration.default }
|
|
|
|
before(:each) do
|
|
{{moduleName}}.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
|