Sha256: 769d550adf1a90f22bc90376a0275afa1e348857fa48ec9063f1ec11c2a3f622
Contents?: true
Size: 848 Bytes
Versions: 15
Compression:
Stored size: 848 Bytes
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::FilesResponse describe Carbon::FilesResponse do let(:instance) { Carbon::FilesResponse.new } describe 'test an instance of FilesResponse' do it 'should create an instance of FilesResponse' do expect(instance).to be_instance_of(Carbon::FilesResponse) end end describe 'test attribute "data"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "next_cursor"' 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
15 entries across 15 versions & 1 rubygems