Sha256: 5bdfb62813ea8d9f1e803685a87d31ae75145c1e7e0385ff1821396730d81bb2
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
=begin #Ory APIs #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. The version of the OpenAPI document: v1.13.6 Contact: support@ory.sh Generated by: https://openapi-generator.tech Generator version: 7.7.0 =end require 'spec_helper' require 'json' # Unit tests for OryClient::MetadataApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'MetadataApi' do before do # run before each test @api_instance = OryClient::MetadataApi.new end after do # run after each test end describe 'test an instance of MetadataApi' do it 'should create an instance of MetadataApi' do expect(@api_instance).to be_instance_of(OryClient::MetadataApi) end end # unit tests for get_version # Return Running Software Version. # This endpoint returns the version of Ory Kratos. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance. # @param [Hash] opts the optional parameters # @return [GetVersion200Response] describe 'get_version test' do it 'should work' do # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/ end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ory-client-1.13.6 | spec/api/metadata_api_spec.rb |