Sha256: 10446f09253531c8d1e442a720e2b0769719455b06b13f1f0298a299e7a0f5ff
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 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::TeamApi describe 'TeamApi' do before do # run before each test @api_instance = Composio::TeamApi.new end after do # run after each test end describe 'test an instance of TeamApi' do it 'should create an instance of TeamApi' do expect(@api_instance).to be_instance_of(Composio::TeamApi) end end # unit tests for get_member_list # List members # @param [Hash] opts the optional parameters # @return [Array<MemberResDTO>] describe 'get_member_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 send_invitation # Invite member # @param [Hash] opts the optional parameters # @option opts [InviteMemberReqDTO] :invite_member_req_dto InviteMemberReqDTO # @return [MemberResDTO] describe 'send_invitation 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
composio-0.1.1 | spec/api/team_api_spec.rb |
composio-0.1.0 | spec/api/team_api_spec.rb |