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