Sha256: 5cfa4c17666224854cee9d5d460a7f315a9107bc67a49758bf82494f555f117f
Contents?: true
Size: 1.23 KB
Versions: 46
Compression:
Stored size: 1.23 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::UserWebPagesRequest describe Carbon::UserWebPagesRequest do let(:instance) { Carbon::UserWebPagesRequest.new } describe 'test an instance of UserWebPagesRequest' do it 'should create an instance of UserWebPagesRequest' do expect(instance).to be_instance_of(Carbon::UserWebPagesRequest) end end describe 'test attribute "filters"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "pagination"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "order_by"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "order_dir"' 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
46 entries across 46 versions & 1 rubygems