Sha256: 53c4f23e97bd543f8626f4c82f28ae873ca02cee1a03a563d277ba2bcc3bb1b3

Contents?: true

Size: 1.12 KB

Versions: 19

Compression:

Stored size: 1.12 KB

Contents

=begin
#ORY Keto

#A cloud native access control server providing best-practice patterns (RBAC, ABAC, ACL, AWS IAM Policies, Kubernetes Roles, ...) via REST APIs.

The version of the OpenAPI document: v0.0.0-alpha.1
Contact: hi@ory.sh
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 4.2.2

=end

require 'spec_helper'

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

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

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
ory-keto-client-0.0.0.alpha46 spec/configuration_spec.rb
ory-keto-client-0.0.0.alpha45 spec/configuration_spec.rb
ory-keto-client-0.0.0.alpha44 spec/configuration_spec.rb
ory-keto-client-0.0.0.alpha43 spec/configuration_spec.rb
ory-keto-client-0.0.0.alpha41 spec/configuration_spec.rb
ory-keto-client-0.0.0.alpha40 spec/configuration_spec.rb
ory-keto-client-0.5.6.alpha1 spec/configuration_spec.rb
ory-keto-client-0.5.4.alpha1 spec/configuration_spec.rb
ory-keto-client-0.5.3.alpha3 spec/configuration_spec.rb
ory-keto-client-0.5.3.alpha2 spec/configuration_spec.rb
ory-keto-client-0.5.3.alpha1 spec/configuration_spec.rb
ory-keto-client-0.5.2 spec/configuration_spec.rb
ory-keto-client-0.5.1.alpha1 spec/configuration_spec.rb
ory-keto-client-0.4.4.alpha1 spec/configuration_spec.rb
ory-keto-client-0.4.3.alpha2 spec/configuration_spec.rb
ory-keto-client-0.4.3.alpha1 spec/configuration_spec.rb
ory-keto-client-0.4.2.alpha1 spec/configuration_spec.rb
ory-keto-client-0.4.1.beta1 spec/configuration_spec.rb
ory-keto-client-0.4.0.alpha1 spec/configuration_spec.rb