Sha256: 32ffe3ec6e8f7e0809105fb0377f2db05c024ba5ba5f49baa3e1735b3bc2ca82
Contents?: true
Size: 1.26 KB
Versions: 13
Compression:
Stored size: 1.26 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::InviteMemberReqDTO describe Composio::InviteMemberReqDTO do let(:instance) { Composio::InviteMemberReqDTO.new } describe 'test an instance of InviteMemberReqDTO' do it 'should create an instance of InviteMemberReqDTO' do expect(instance).to be_instance_of(Composio::InviteMemberReqDTO) end end describe 'test attribute "email"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "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 "verify_host"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "role"' 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