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