Sha256: 0722bc94699d7ec58f277e42b17ac4e3e830446788910fb4afa263ddbed91c73
Contents?: true
Size: 1.03 KB
Versions: 15
Compression:
Stored size: 1.03 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::PullRequestFilters describe Carbon::PullRequestFilters do let(:instance) { Carbon::PullRequestFilters.new } describe 'test an instance of PullRequestFilters' do it 'should create an instance of PullRequestFilters' do expect(instance).to be_instance_of(Carbon::PullRequestFilters) end end describe 'test attribute "state"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "base"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "head"' 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