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