=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: v0.1.0-alpha.2
Contact: support@ory.sh
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 5.4.0

=end

require 'spec_helper'
require 'json'

# Unit tests for OryClient::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 = OryClient::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(OryClient::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 [RelationQuery] :relation_query 
  # @return [RelationQuery]
  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_tuples
  # Delete Relation Tuples
  # Use this endpoint to delete relation tuples
  # @param [Hash] opts the optional parameters
  # @option opts [String] :namespace Namespace of the Relation Tuple
  # @option opts [String] :object Object of the Relation Tuple
  # @option opts [String] :relation Relation of the Relation Tuple
  # @option opts [String] :subject_id SubjectID of the Relation Tuple
  # @option opts [String] :subject_set_namespace Namespace of the Subject Set
  # @option opts [String] :subject_set_object Object of the Subject Set
  # @option opts [String] :subject_set_relation Relation of the Subject Set
  # @return [nil]
  describe 'delete_relation_tuples 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<PatchDelta>] :patch_delta 
  # @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