Sha256: 378a80c5747edf1b9a16a7229becde2e9b348ef6ca493b0610f9d628ba7efceb

Contents?: true

Size: 1.63 KB

Versions: 4

Compression:

Stored size: 1.63 KB

Contents

=begin
#Composio OpenAPI

#Composio SDK: Equip your agent with high-quality tools and build your real-world usecase

The version of the OpenAPI document: 1.0.0
=end

require 'spec_helper'
require 'json'

# Unit tests for Composio::AppsApi
describe 'AppsApi' do
  before do
    # run before each test
    @api_instance = Composio::AppsApi.new
  end

  after do
    # run after each test
  end

  describe 'test an instance of AppsApi' do
    it 'should create an instance of AppsApi' do
      expect(@api_instance).to be_instance_of(Composio::AppsApi)
    end
  end

  # unit tests for get_details
  # Get app
  # Get app details
  # @param app_name 
  # @param [Hash] opts the optional parameters
  # @return [SingleAppInfoResDTO]
  describe 'get_details 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 list
  # Get apps
  # Retrieve a list of all applications based on query parameters.
  # @param [Hash] opts the optional parameters
  # @option opts [String] :category 
  # @option opts [String] :include_local 
  # @return [AppListResDTO]
  describe 'list 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 list_open_api_specs
  # Get opena api specs
  # @param [Hash] opts the optional parameters
  # @return [Array<AppListResDTO>]
  describe 'list_open_api_specs 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

4 entries across 4 versions & 1 rubygems

Version Path
composio-0.1.6 spec/api/apps_api_spec.rb
composio-0.1.5 spec/api/apps_api_spec.rb
composio-0.1.4 spec/api/apps_api_spec.rb
composio-0.1.3 spec/api/apps_api_spec.rb