Sha256: 77f57fe06bca5f775edd9523363a675dd0e53abd25b8dbbcc46cd9f3a344d5e8
Contents?: true
Size: 1.25 KB
Versions: 12
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::GoogleDriveCredentials describe Carbon::GoogleDriveCredentials do let(:instance) { Carbon::GoogleDriveCredentials.new } describe 'test an instance of GoogleDriveCredentials' do it 'should create an instance of GoogleDriveCredentials' do expect(instance).to be_instance_of(Carbon::GoogleDriveCredentials) 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 "api_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
12 entries across 12 versions & 1 rubygems