-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultiple_errors_response_spec.rb
More file actions
46 lines (36 loc) · 1.43 KB
/
multiple_errors_response_spec.rb
File metadata and controls
46 lines (36 loc) · 1.43 KB
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
=begin
#DocSpring API
#Use DocSpring's API to programmatically fill out PDF forms, convert HTML to PDFs, merge PDFs, or request legally binding e-signatures.
The version of the OpenAPI document: v1
Generated by: https://openapi-generator.tech
Generator version: 7.16.0-DOCSPRING
=end
require 'spec_helper'
require 'json'
require 'date'
# Unit tests for DocSpring::MultipleErrorsResponse
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
describe DocSpring::MultipleErrorsResponse do
let(:instance) { DocSpring::MultipleErrorsResponse.new }
describe 'test an instance of MultipleErrorsResponse' do
it 'should create an instance of MultipleErrorsResponse' do
# uncomment below to test the instance creation
#expect(instance).to be_instance_of(DocSpring::MultipleErrorsResponse)
end
end
describe 'test attribute "status"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["error"])
# validator.allowable_values.each do |value|
# expect { instance.status = value }.not_to raise_error
# end
end
end
describe 'test attribute "errors"' do
it 'should work' do
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end
end
end