Sha256: a639c8a340f5a52b6661d54f260b17205836866617f5286c40833044c6b68750
Contents?: true
Size: 1.3 KB
Versions: 15
Compression:
Stored size: 1.3 KB
Contents
=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::TokensApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'TokensApi' do before do # run before each test @api_instance = Hubspot::OAuth::TokensApi.new end after do # run after each test end describe 'test an instance of TokensApi' do it 'should create an instance of TokensApi' do expect(@api_instance).to be_instance_of(Hubspot::OAuth::TokensApi) 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 end
Version data entries
15 entries across 15 versions & 1 rubygems