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