Sha256: e4f430069b3d2ea8b9946619ed866e0aba79c123c259aab750f6798c4b8f0358
Contents?: true
Size: 1.58 KB
Versions: 3
Compression:
Stored size: 1.58 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 # @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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
composio-0.1.2 | spec/api/apps_api_spec.rb |
composio-0.1.1 | spec/api/apps_api_spec.rb |
composio-0.1.0 | spec/api/apps_api_spec.rb |