Sha256: 62735a4333e566177b9d1a84452afae0af366fc098c1048e6496326732113652
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 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' require 'date' # Unit tests for Composio::DirectExecuteReqDto describe Composio::DirectExecuteReqDto do let(:instance) { Composio::DirectExecuteReqDto.new } describe 'test an instance of DirectExecuteReqDto' do it 'should create an instance of DirectExecuteReqDto' do expect(instance).to be_instance_of(Composio::DirectExecuteReqDto) end end describe 'test attribute "endpoint"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "base_url"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "headers"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "_query_params"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "body"' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
composio-0.1.18 | spec/models/direct_execute_req_dto_spec.rb |