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