=begin #Subskribe API #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: 1.0.0 Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.41 =end require 'spec_helper' require 'json' # Unit tests for SubskribeDevClient::SettingsApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'SettingsApi' do before do # run before each test @instance = SubskribeDevClient::SettingsApi.new end after do # run after each test end describe 'test an instance of SettingsApi' do it 'should create an instance of SettingsApi' do expect(@instance).to be_instance_of(SubskribeDevClient::SettingsApi) end end # unit tests for activate_unit_of_measure # Activate unit of measure # Activates the specified unit of measure making it available to be attached to charges # @param id # @param [Hash] opts the optional parameters # @return [nil] describe 'activate_unit_of_measure 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 add_unit_of_measure # Add unit of measure # Add a new instance of unit of measure as specified by the input # @param [Hash] opts the optional parameters # @option opts [UnitOfMeasureJson] :body # @return [UnitOfMeasureJson] describe 'add_unit_of_measure 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_unit_of_measure # Delete unit of measure # Delete the unit of measure by Id provided. Returns the deleted unit of measure object if successful. # @param id # @param [Hash] opts the optional parameters # @return [UnitOfMeasureJson] describe 'delete_unit_of_measure 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 deprecate_unit_of_measure # Deprecate unit of measure # Deprecates the specified unit of measure making it unavailable to be attached to charges going forward # @param id # @param [Hash] opts the optional parameters # @return [nil] describe 'deprecate_unit_of_measure 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_units_of_measure # Get units of measure # Returns a paginated list of units of measure # @param [Hash] opts the optional parameters # @option opts [String] :cursor # @option opts [Integer] :limit # @return [UnitOfMeasurePaginationResponseJson] describe 'get_units_of_measure 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 update_unit_of_measure # Update unit of measure # Update the unit of measure by Id provided. # @param id # @param [Hash] opts the optional parameters # @option opts [UnitOfMeasureJson] :body # @return [UnitOfMeasureJson] describe 'update_unit_of_measure test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end