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