Sha256: 47e1479619af8429a00ded9abd006aeff2cfff81ed8b739ec49d48d7ef15f1f2
Contents?: true
Size: 786 Bytes
Versions: 15
Compression:
Stored size: 786 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::User describe Carbon::User do let(:instance) { Carbon::User.new } describe 'test an instance of User' do it 'should create an instance of User' do expect(instance).to be_instance_of(Carbon::User) end end describe 'test attribute "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 "login"' 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
15 entries across 15 versions & 1 rubygems