=begin #ORY Keto #Ory Keto is 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.6.0-alpha.1 Contact: hi@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.0.0 =end require 'spec_helper' require 'json' # Unit tests for OryHydraClient::WriteApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'WriteApi' do before do # run before each test @api_instance = OryHydraClient::WriteApi.new end after do # run after each test end describe 'test an instance of WriteApi' do it 'should create an instance of WriteApi' do expect(@api_instance).to be_instance_of(OryHydraClient::WriteApi) end end # unit tests for create_relation_tuple # Create a Relation Tuple # Use this endpoint to create a relation tuple. # @param [Hash] opts the optional parameters # @option opts [InternalRelationTuple] :payload # @return [InternalRelationTuple] describe 'create_relation_tuple test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for delete_relation_tuple # Delete a Relation Tuple # Use this endpoint to delete a relation tuple. # @param namespace Namespace of the Relation Tuple # @param object Object of the Relation Tuple # @param relation Relation of the Relation Tuple # @param [Hash] opts the optional parameters # @option opts [String] :subject Subject of the Relation Tuple The subject follows the subject string encoding format. # @return [nil] describe 'delete_relation_tuple test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for patch_relation_tuples # Patch Multiple Relation Tuples # Use this endpoint to patch one or more relation tuples. # @param [Hash] opts the optional parameters # @option opts [Array] :payload # @return [nil] describe 'patch_relation_tuples test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end