=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::EntitiesApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'EntitiesApi' do before do # run before each test @instance = SubskribeDevClient::EntitiesApi.new end after do # run after each test end describe 'test an instance of EntitiesApi' do it 'should create an instance of EntitiesApi' do expect(@instance).to be_instance_of(SubskribeDevClient::EntitiesApi) end end # unit tests for create # Create an entity # Create an entity. On success return the created entity. # @param [Hash] opts the optional parameters # @option opts [EntityJson] :body entity # @return [nil] describe 'create 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_entity # Delete entity # Delete the entity if there is no data associated with it. # @param id entity id # @param [Hash] opts the optional parameters # @return [nil] describe 'delete_entity 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_entities # Gets entities # Gets all entities # @param [Hash] opts the optional parameters # @return [Array] describe 'get_entities 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_entity_by_id # Gets entity details # Gets the entity details of the specified entity id # @param id entity id # @param [Hash] opts the optional parameters # @return [Entity] describe 'get_entity_by_id 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_logo # Get entity logo # Get the current logo stored for the given entity # @param entity_id # @param [Hash] opts the optional parameters # @return [nil] describe 'get_logo 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 order_entity_migration # Update order entity # Move order to a target entity # @param [Hash] opts the optional parameters # @option opts [String] :target_entity_id # @option opts [String] :order_id # @return [nil] describe 'order_entity_migration 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 subscription_entity_migration # Move subscription to a target entity # Move subscription and associated transactions to a target entity # @param [Hash] opts the optional parameters # @option opts [String] :target_entity_id # @option opts [String] :subscription_id # @return [nil] describe 'subscription_entity_migration test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end