=begin #OAuthService #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) The version of the OpenAPI document: v1 Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.3.1 =end require 'spec_helper' require 'json' # Unit tests for Hubspot::OAuth::DefaultApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'DefaultApi' do before do # run before each test @api_instance = Hubspot::OAuth::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(Hubspot::OAuth::DefaultApi) end end # unit tests for archive_refresh_token # @param token # @param [Hash] opts the optional parameters # @return [Error] describe 'archive_refresh_token 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 create_token # @param [Hash] opts the optional parameters # @option opts [String] :grant_type # @option opts [String] :code # @option opts [String] :redirect_uri # @option opts [String] :client_id # @option opts [String] :client_secret # @option opts [String] :refresh_token # @return [TokenResponseIF] describe 'create_token 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 get_access_token # @param token # @param [Hash] opts the optional parameters # @return [AccessTokenInfoResponse] describe 'get_access_token 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 get_refresh_token # @param token # @param [Hash] opts the optional parameters # @return [RefreshTokenInfoResponse] describe 'get_refresh_token test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end