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