=begin #Yousign API Swagger #For your information, the Yousign API documentation is available at https://dev.yousign.com/ OpenAPI spec version: 2.1 Contact: support@yousign.fr Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.14 =end require 'spec_helper' require 'json' # Unit tests for YousignClient::ConsentProcessesApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'ConsentProcessesApi' do before do # run before each test @instance = YousignClient::ConsentProcessesApi.new end after do # run after each test end describe 'test an instance of ConsentProcessesApi' do it 'should create an instance of ConsentProcessesApi' do expect(@instance).to be_instance_of(YousignClient::ConsentProcessesApi) end end # unit tests for consent_process_values_get # Get list of Consent Process Value # @param member id of member # @param [Hash] opts the optional parameters # @return [ConsentProcessValueOutput] describe 'consent_process_values_get 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 consent_process_values_id_get # Get a Consent Process Value # @param id # @param [Hash] opts the optional parameters # @option opts [String] :member id of member (required for anonymous) # @return [ConsentProcessValueOutput] describe 'consent_process_values_id_get 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 consent_process_values_post # Create a new Consent Process Value # @param body # @param [Hash] opts the optional parameters # @return [ConsentProcessValueOutput] describe 'consent_process_values_post 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 consent_processes_get # Get list of Consent Processes # @param [Hash] opts the optional parameters # @option opts [String] :member id of member (required for anonymous) # @option opts [String] :procedure id of procedure (required if the member attribut is not set) # @return [Array] describe 'consent_processes_get 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 consent_processes_id_delete # Delete a Consent Process # @param id # @param [Hash] opts the optional parameters # @return [nil] describe 'consent_processes_id_delete 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 consent_processes_id_get # Get a Consent Process # @param id # @param [Hash] opts the optional parameters # @option opts [String] :member id of member (required for anonymous) # @return [ConsentProcessOutput] describe 'consent_processes_id_get 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 consent_processes_id_put # Update a Consent Process # @param id # @param body # @param [Hash] opts the optional parameters # @return [ConsentProcessOutput] describe 'consent_processes_id_put 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 consent_processes_post # Create a new Consent Process # @param body # @param [Hash] opts the optional parameters # @return [ConsentProcessOutput] describe 'consent_processes_post test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end