Sha256: 5456106dcc013616873c2fe85f020317c903e86da0b8787636149c34ce2d1744

Contents?: true

Size: 1.02 KB

Versions: 43

Compression:

Stored size: 1.02 KB

Contents

=begin
#Cheminée

#Cheminée: The Chemical Structure Search Engine

The version of the OpenAPI document: 1.0

Generated by: https://openapi-generator.tech
OpenAPI Generator version: 7.1.0-SNAPSHOT

=end

require 'spec_helper'

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

  before(:each) do
    # uncomment below to setup host and base_path
    # require 'URI'
    # uri = URI.parse("http://localhost:3000/api")
    # Cheminee.configure do |c|
    #   c.host = uri.host
    #   c.base_path = uri.path
    # 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("http://localhost:3000/api")
    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("http://localhost:3000/api")
      end
    end
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
cheminee-0.1.52 spec/configuration_spec.rb
cheminee-0.1.51 spec/configuration_spec.rb
cheminee-0.1.50 spec/configuration_spec.rb
cheminee-0.1.48 spec/configuration_spec.rb
cheminee-0.1.47 spec/configuration_spec.rb
cheminee-0.1.46 spec/configuration_spec.rb
cheminee-0.1.45 spec/configuration_spec.rb
cheminee-0.1.44 spec/configuration_spec.rb
cheminee-0.1.43 spec/configuration_spec.rb
cheminee-0.1.42 spec/configuration_spec.rb
cheminee-0.1.41 spec/configuration_spec.rb
cheminee-0.1.39 spec/configuration_spec.rb
cheminee-0.1.38 spec/configuration_spec.rb
cheminee-0.1.37 spec/configuration_spec.rb
cheminee-0.1.36 spec/configuration_spec.rb
cheminee-0.1.35 spec/configuration_spec.rb
cheminee-0.1.34 spec/configuration_spec.rb
cheminee-0.1.33 spec/configuration_spec.rb
cheminee-0.1.32 spec/configuration_spec.rb
cheminee-0.1.31 spec/configuration_spec.rb