Sha256: 4e46fcf360d5ae013b93f7ee82f2108eb9a71f3d254a3b64771d760727a12055
Contents?: true
Size: 1.25 KB
Versions: 11
Compression:
Stored size: 1.25 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 describe 'test attribute "data_source_tags"' 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