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