=begin #Patch API V1 #The core API used to integrate with Patch's service The version of the OpenAPI document: v1 Contact: developers@usepatch.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.3.1 =end require 'spec_helper' require 'json' # Unit tests for Patch::OrdersApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'OrdersApi' do before do # run before each test @api_instance = Patch::OrdersApi.new end after do # run after each test end describe 'test an instance of OrdersApi' do it 'should create an instance of OrdersApi' do expect(@api_instance).to be_instance_of(Patch::OrdersApi) end end # unit tests for cancel_order # Cancel an order # Cancelling an order removes the associated offset allocation from an order. You will not be charged for cancelled orders. Only orders in the `draft` state can be cancelled. # @param id # @param [Hash] opts the optional parameters # @return [OrderResponse] describe 'cancel_order 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_order # Creates an order # Creates an order in the `placed` state. To create a `draft` order, create an estimate first. # @param create_order_request # @param [Hash] opts the optional parameters # @return [OrderResponse] describe 'create_order 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 place_order # Place an order # Placing an order confirms an order's allocation of offsets. Only orders that are in the `draft` state can be placed # @param id # @param [Hash] opts the optional parameters # @return [OrderResponse] describe 'place_order 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 retrieve_order # Retrieves an order # Retrieves a given order and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for. # @param id # @param [Hash] opts the optional parameters # @return [OrderResponse] describe 'retrieve_order 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 retrieve_orders # Retrieves a list of orders # Retrieves a list of orders and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for. # @param [Hash] opts the optional parameters # @option opts [Integer] :page # @return [OrderListResponse] describe 'retrieve_orders test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end