Sha256: d2e78194de55326bd11bb58177909f56fc6678561b47c81ea6bf64f4e9bb3b20
Contents?: true
Size: 1.28 KB
Versions: 13
Compression:
Stored size: 1.28 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::AppNameCountDTO describe Composio::AppNameCountDTO do let(:instance) { Composio::AppNameCountDTO.new } describe 'test an instance of AppNameCountDTO' do it 'should create an instance of AppNameCountDTO' do expect(instance).to be_instance_of(Composio::AppNameCountDTO) end end describe 'test attribute "app_name"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "connection_count"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "trigger_count"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "request_logs_count"' 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
13 entries across 13 versions & 1 rubygems