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