=begin #Minty API #Minty API =end require 'spec_helper' require 'json' # Unit tests for MintyApi::DefaultApi describe 'DefaultApi' do before do # run before each test @api_instance = MintyApi::DefaultApi.new end after do # run after each test end describe 'test an instance of DefaultApi' do it 'should create an instance of DefaultApi' do expect(@api_instance).to be_instance_of(MintyApi::DefaultApi) end end # unit tests for api_v1_forgot_password_url_get # forgot_password_url # forgot_password_url # @param api_minty_application_id # @param [Hash] opts the optional parameters # @return [RedirectUrl] describe 'api_v1_forgot_password_url_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 api_v1_sign_in_url_get # sign_in_url summary # sign_in_url description # @param api_minty_application_id # @param [Hash] opts the optional parameters # @return [RedirectUrl] describe 'api_v1_sign_in_url_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 api_v1_sign_up_url_get # sign_up_url # sign_up_url # @param api_minty_application_id # @param [Hash] opts the optional parameters # @return [RedirectUrl] describe 'api_v1_sign_up_url_get test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end