Sha256: bd22ccbaf9ba0b64e14756d992431fba04c94038811db0eacaa20455ea915906
Contents?: true
Size: 1.11 KB
Versions: 19
Compression:
Stored size: 1.11 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::AzureBlobStorageAuthentication describe Carbon::AzureBlobStorageAuthentication do let(:instance) { Carbon::AzureBlobStorageAuthentication.new } describe 'test an instance of AzureBlobStorageAuthentication' do it 'should create an instance of AzureBlobStorageAuthentication' do expect(instance).to be_instance_of(Carbon::AzureBlobStorageAuthentication) end end describe 'test attribute "source"' 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_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 end
Version data entries
19 entries across 19 versions & 1 rubygems