Sha256: 128ff45d703aa5a7bf905bc71e1e1a5fc55a22a16f7e638a6c7737d92da07170
Contents?: true
Size: 1.23 KB
Versions: 11
Compression:
Stored size: 1.23 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::FileSyncConfig describe Carbon::FileSyncConfig do let(:instance) { Carbon::FileSyncConfig.new } describe 'test an instance of FileSyncConfig' do it 'should create an instance of FileSyncConfig' do expect(instance).to be_instance_of(Carbon::FileSyncConfig) end end describe 'test attribute "auto_synced_source_types"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "sync_attachments"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "detect_audio_language"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "split_rows"' 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
11 entries across 11 versions & 1 rubygems