1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
=begin
#OpenBao API
#HTTP API that gives you full access to OpenBao. All API routes are prefixed with `/v1/`.
The version of the OpenAPI document: 2.0.0
Generated by: https://openapi-generator.tech
Generator version: 7.7.0
=end
require 'spec_helper'
require 'json'
require 'date'
# Unit tests for OpenbaoClient::LeasesRenewLeaseRequest
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
describe OpenbaoClient::LeasesRenewLeaseRequest do
let(:instance) { OpenbaoClient::LeasesRenewLeaseRequest.new }
describe 'test an instance of LeasesRenewLeaseRequest' do
it 'should create an instance of LeasesRenewLeaseRequest' do
# uncomment below to test the instance creation
#expect(instance).to be_instance_of(OpenbaoClient::LeasesRenewLeaseRequest)
end
end
describe 'test attribute "increment"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end
end
describe 'test attribute "lease_id"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end
end
describe 'test attribute "url_lease_id"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end
end
end
|