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