Sha256: d514c89227af793dbfeb5def54e66b4cfb20279e1c3e655585d773013d81718f
Contents?: true
Size: 1.09 KB
Versions: 37
Compression:
Stored size: 1.09 KB
Contents
=begin #Carbon #Connect external data to LLMs, no matter the source. The version of the OpenAPI document: 1.0.0 =end require 'spec_helper' require 'json' require 'date' # Unit tests for Carbon::SentWebhookPayloadObject describe Carbon::SentWebhookPayloadObject do let(:instance) { Carbon::SentWebhookPayloadObject.new } describe 'test an instance of SentWebhookPayloadObject' do it 'should create an instance of SentWebhookPayloadObject' do expect(instance).to be_instance_of(Carbon::SentWebhookPayloadObject) end end describe 'test attribute "object_type"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "object_id"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "additional_information"' 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
37 entries across 37 versions & 1 rubygems