[Ruby] fix RSpec documentation URL (#15164)

This commit is contained in:
Takeshi Masaki 2023-04-10 11:44:28 +09:00 committed by GitHub
parent a4f5a74d5b
commit 5e3bb7e33e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
152 changed files with 552 additions and 552 deletions

View File

@ -38,7 +38,7 @@ require 'json'
{{/required}}{{/allParams}} # @return [{{{returnType}}}{{^returnType}}nil{{/returnType}}] {{/required}}{{/allParams}} # @return [{{{returnType}}}{{^returnType}}nil{{/returnType}}]
describe '{{operationId}} test' do describe '{{operationId}} test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -24,14 +24,14 @@ describe {{moduleName}}::{{classname}} do
describe 'test attribute "{{{name}}}"' do describe 'test attribute "{{{name}}}"' do
it 'should work' do it 'should work' do
{{#isEnum}} {{#isEnum}}
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('{{{dataType}}}', [{{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}}, {{/-last}}{{/enumVars}}{{/allowableValues}}]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('{{{dataType}}}', [{{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}}, {{/-last}}{{/enumVars}}{{/allowableValues}}])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.{{name}} = value }.not_to raise_error # expect { instance.{{name}} = value }.not_to raise_error
# end # end
{{/isEnum}} {{/isEnum}}
{{^isEnum}} {{^isEnum}}
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
{{/isEnum}} {{/isEnum}}
end end
end end

View File

@ -40,7 +40,7 @@ describe 'AnotherFakeApi' do
# @return [Client] # @return [Client]
describe 'call_123_test_special_tags test' do describe 'call_123_test_special_tags test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -37,7 +37,7 @@ describe 'DefaultApi' do
# @return [FooGetDefaultResponse] # @return [FooGetDefaultResponse]
describe 'foo_get test' do describe 'foo_get test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -38,7 +38,7 @@ describe 'FakeApi' do
# @return [HealthCheckResult] # @return [HealthCheckResult]
describe 'fake_health_get test' do describe 'fake_health_get test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'fake_http_signature_test test' do describe 'fake_http_signature_test test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -62,7 +62,7 @@ describe 'FakeApi' do
# @return [Boolean] # @return [Boolean]
describe 'fake_outer_boolean_serialize test' do describe 'fake_outer_boolean_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -73,7 +73,7 @@ describe 'FakeApi' do
# @return [OuterComposite] # @return [OuterComposite]
describe 'fake_outer_composite_serialize test' do describe 'fake_outer_composite_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -84,7 +84,7 @@ describe 'FakeApi' do
# @return [Float] # @return [Float]
describe 'fake_outer_number_serialize test' do describe 'fake_outer_number_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -95,7 +95,7 @@ describe 'FakeApi' do
# @return [String] # @return [String]
describe 'fake_outer_string_serialize test' do describe 'fake_outer_string_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -106,7 +106,7 @@ describe 'FakeApi' do
# @return [OuterObjectWithEnumProperty] # @return [OuterObjectWithEnumProperty]
describe 'fake_property_enum_integer_serialize test' do describe 'fake_property_enum_integer_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -117,7 +117,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_body_with_binary test' do describe 'test_body_with_binary test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -128,7 +128,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_body_with_file_schema test' do describe 'test_body_with_file_schema test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -139,7 +139,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_body_with_query_params test' do describe 'test_body_with_query_params test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -151,7 +151,7 @@ describe 'FakeApi' do
# @return [Client] # @return [Client]
describe 'test_client_model test' do describe 'test_client_model test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -176,7 +176,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_endpoint_parameters test' do describe 'test_endpoint_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -196,7 +196,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_enum_parameters test' do describe 'test_enum_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -213,7 +213,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_group_parameters test' do describe 'test_group_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -225,7 +225,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_inline_additional_properties test' do describe 'test_inline_additional_properties test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -238,7 +238,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_json_form_data test' do describe 'test_json_form_data test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -255,7 +255,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_query_parameter_collection_format test' do describe 'test_query_parameter_collection_format test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'FakeClassnameTags123Api' do
# @return [Client] # @return [Client]
describe 'test_classname test' do describe 'test_classname test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'add_pet test' do describe 'add_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -53,7 +53,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'delete_pet test' do describe 'delete_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -65,7 +65,7 @@ describe 'PetApi' do
# @return [Array<Pet>] # @return [Array<Pet>]
describe 'find_pets_by_status test' do describe 'find_pets_by_status test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -77,7 +77,7 @@ describe 'PetApi' do
# @return [Array<Pet>] # @return [Array<Pet>]
describe 'find_pets_by_tags test' do describe 'find_pets_by_tags test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -89,7 +89,7 @@ describe 'PetApi' do
# @return [Pet] # @return [Pet]
describe 'get_pet_by_id test' do describe 'get_pet_by_id test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -101,7 +101,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'update_pet test' do describe 'update_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -115,7 +115,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'update_pet_with_form test' do describe 'update_pet_with_form test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -129,7 +129,7 @@ describe 'PetApi' do
# @return [ApiResponse] # @return [ApiResponse]
describe 'upload_file test' do describe 'upload_file test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -143,7 +143,7 @@ describe 'PetApi' do
# @return [ApiResponse] # @return [ApiResponse]
describe 'upload_file_with_required_file test' do describe 'upload_file_with_required_file test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'StoreApi' do
# @return [nil] # @return [nil]
describe 'delete_order test' do describe 'delete_order test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'StoreApi' do
# @return [Hash<String, Integer>] # @return [Hash<String, Integer>]
describe 'get_inventory test' do describe 'get_inventory test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -63,7 +63,7 @@ describe 'StoreApi' do
# @return [Order] # @return [Order]
describe 'get_order_by_id test' do describe 'get_order_by_id test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -75,7 +75,7 @@ describe 'StoreApi' do
# @return [Order] # @return [Order]
describe 'place_order test' do describe 'place_order test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_user test' do describe 'create_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -52,7 +52,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_users_with_array_input test' do describe 'create_users_with_array_input test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -64,7 +64,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_users_with_list_input test' do describe 'create_users_with_list_input test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -76,7 +76,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'delete_user test' do describe 'delete_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -88,7 +88,7 @@ describe 'UserApi' do
# @return [User] # @return [User]
describe 'get_user_by_name test' do describe 'get_user_by_name test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -101,7 +101,7 @@ describe 'UserApi' do
# @return [String] # @return [String]
describe 'login_user test' do describe 'login_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -112,7 +112,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'logout_user test' do describe 'logout_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -125,7 +125,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'update_user test' do describe 'update_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::AdditionalPropertiesClass do
end end
describe 'test attribute "map_property"' do describe 'test attribute "map_property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map_of_map_property"' do describe 'test attribute "map_of_map_property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::AllOfWithSingleRef do
end end
describe 'test attribute "username"' do describe 'test attribute "username"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "single_ref_type"' do describe 'test attribute "single_ref_type"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::Animal do
end end
describe 'test attribute "class_name"' do describe 'test attribute "class_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "color"' do describe 'test attribute "color"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,19 +27,19 @@ describe Petstore::ApiResponse do
end end
describe 'test attribute "code"' do describe 'test attribute "code"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "type"' do describe 'test attribute "type"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "message"' do describe 'test attribute "message"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::ArrayOfArrayOfNumberOnly do
end end
describe 'test attribute "array_array_number"' do describe 'test attribute "array_array_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::ArrayOfNumberOnly do
end end
describe 'test attribute "array_number"' do describe 'test attribute "array_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,19 +27,19 @@ describe Petstore::ArrayTest do
end end
describe 'test attribute "array_of_string"' do describe 'test attribute "array_of_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_array_of_integer"' do describe 'test attribute "array_array_of_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_array_of_model"' do describe 'test attribute "array_array_of_model"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,37 +27,37 @@ describe Petstore::Capitalization do
end end
describe 'test attribute "small_camel"' do describe 'test attribute "small_camel"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "capital_camel"' do describe 'test attribute "capital_camel"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "small_snake"' do describe 'test attribute "small_snake"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "capital_snake"' do describe 'test attribute "capital_snake"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "sca_eth_flow_points"' do describe 'test attribute "sca_eth_flow_points"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "att_name"' do describe 'test attribute "att_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::CatAllOf do
end end
describe 'test attribute "declawed"' do describe 'test attribute "declawed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::Cat do
end end
describe 'test attribute "declawed"' do describe 'test attribute "declawed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::Category do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::ClassModel do
end end
describe 'test attribute "_class"' do describe 'test attribute "_class"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::Client do
end end
describe 'test attribute "client"' do describe 'test attribute "client"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::DeprecatedObject do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::DogAllOf do
end end
describe 'test attribute "breed"' do describe 'test attribute "breed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::Dog do
end end
describe 'test attribute "breed"' do describe 'test attribute "breed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::EnumArrays do
end end
describe 'test attribute "just_symbol"' do describe 'test attribute "just_symbol"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', [">=", "$"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', [">=", "$"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.just_symbol = value }.not_to raise_error # expect { instance.just_symbol = value }.not_to raise_error
@ -37,7 +37,7 @@ describe Petstore::EnumArrays do
describe 'test attribute "array_enum"' do describe 'test attribute "array_enum"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["fish", "crab"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["fish", "crab"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.array_enum = value }.not_to raise_error # expect { instance.array_enum = value }.not_to raise_error

View File

@ -27,7 +27,7 @@ describe Petstore::EnumTest do
end end
describe 'test attribute "enum_string"' do describe 'test attribute "enum_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.enum_string = value }.not_to raise_error # expect { instance.enum_string = value }.not_to raise_error
@ -37,7 +37,7 @@ describe Petstore::EnumTest do
describe 'test attribute "enum_string_required"' do describe 'test attribute "enum_string_required"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.enum_string_required = value }.not_to raise_error # expect { instance.enum_string_required = value }.not_to raise_error
@ -47,7 +47,7 @@ describe Petstore::EnumTest do
describe 'test attribute "enum_integer"' do describe 'test attribute "enum_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [1, -1]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [1, -1])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.enum_integer = value }.not_to raise_error # expect { instance.enum_integer = value }.not_to raise_error
@ -57,7 +57,7 @@ describe Petstore::EnumTest do
describe 'test attribute "enum_number"' do describe 'test attribute "enum_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Float', [1.1, -1.2]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Float', [1.1, -1.2])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.enum_number = value }.not_to raise_error # expect { instance.enum_number = value }.not_to raise_error
@ -67,25 +67,25 @@ describe Petstore::EnumTest do
describe 'test attribute "outer_enum"' do describe 'test attribute "outer_enum"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_integer"' do describe 'test attribute "outer_enum_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_default_value"' do describe 'test attribute "outer_enum_default_value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_integer_default_value"' do describe 'test attribute "outer_enum_integer_default_value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::FileSchemaTestClass do
end end
describe 'test attribute "file"' do describe 'test attribute "file"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "files"' do describe 'test attribute "files"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::File do
end end
describe 'test attribute "source_uri"' do describe 'test attribute "source_uri"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::FooGetDefaultResponse do
end end
describe 'test attribute "string"' do describe 'test attribute "string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::Foo do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,97 +27,97 @@ describe Petstore::FormatTest do
end end
describe 'test attribute "integer"' do describe 'test attribute "integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "int32"' do describe 'test attribute "int32"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "int64"' do describe 'test attribute "int64"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "number"' do describe 'test attribute "number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "float"' do describe 'test attribute "float"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "double"' do describe 'test attribute "double"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "decimal"' do describe 'test attribute "decimal"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "string"' do describe 'test attribute "string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "byte"' do describe 'test attribute "byte"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "binary"' do describe 'test attribute "binary"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date"' do describe 'test attribute "date"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_time"' do describe 'test attribute "date_time"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "password"' do describe 'test attribute "password"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pattern_with_digits"' do describe 'test attribute "pattern_with_digits"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pattern_with_digits_and_delimiter"' do describe 'test attribute "pattern_with_digits_and_delimiter"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::HasOnlyReadOnly do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "foo"' do describe 'test attribute "foo"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::HealthCheckResult do
end end
describe 'test attribute "nullable_message"' do describe 'test attribute "nullable_message"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::List do
end end
describe 'test attribute "_123_list"' do describe 'test attribute "_123_list"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::MapTest do
end end
describe 'test attribute "map_map_of_string"' do describe 'test attribute "map_map_of_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map_of_enum_string"' do describe 'test attribute "map_of_enum_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Hash<String, String>', ["UPPER", "lower"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Hash<String, String>', ["UPPER", "lower"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.map_of_enum_string = value }.not_to raise_error # expect { instance.map_of_enum_string = value }.not_to raise_error
@ -43,13 +43,13 @@ describe Petstore::MapTest do
describe 'test attribute "direct_map"' do describe 'test attribute "direct_map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "indirect_map"' do describe 'test attribute "indirect_map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,19 +27,19 @@ describe Petstore::MixedPropertiesAndAdditionalPropertiesClass do
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_time"' do describe 'test attribute "date_time"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map"' do describe 'test attribute "map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::Model200Response do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "_class"' do describe 'test attribute "_class"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::ModelReturn do
end end
describe 'test attribute "_return"' do describe 'test attribute "_return"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,25 +27,25 @@ describe Petstore::Name do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "snake_case"' do describe 'test attribute "snake_case"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "property"' do describe 'test attribute "property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "_123_number"' do describe 'test attribute "_123_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,73 +27,73 @@ describe Petstore::NullableClass do
end end
describe 'test attribute "integer_prop"' do describe 'test attribute "integer_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "number_prop"' do describe 'test attribute "number_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "boolean_prop"' do describe 'test attribute "boolean_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "string_prop"' do describe 'test attribute "string_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_prop"' do describe 'test attribute "date_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "datetime_prop"' do describe 'test attribute "datetime_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_nullable_prop"' do describe 'test attribute "array_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_and_items_nullable_prop"' do describe 'test attribute "array_and_items_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_items_nullable"' do describe 'test attribute "array_items_nullable"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_nullable_prop"' do describe 'test attribute "object_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_and_items_nullable_prop"' do describe 'test attribute "object_and_items_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_items_nullable"' do describe 'test attribute "object_items_nullable"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::NumberOnly do
end end
describe 'test attribute "just_number"' do describe 'test attribute "just_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,25 +27,25 @@ describe Petstore::ObjectWithDeprecatedFields do
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "deprecated_ref"' do describe 'test attribute "deprecated_ref"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "bars"' do describe 'test attribute "bars"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,31 +27,31 @@ describe Petstore::Order do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pet_id"' do describe 'test attribute "pet_id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "quantity"' do describe 'test attribute "quantity"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "ship_date"' do describe 'test attribute "ship_date"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "status"' do describe 'test attribute "status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["placed", "approved", "delivered"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["placed", "approved", "delivered"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.status = value }.not_to raise_error # expect { instance.status = value }.not_to raise_error
@ -61,7 +61,7 @@ describe Petstore::Order do
describe 'test attribute "complete"' do describe 'test attribute "complete"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,19 +27,19 @@ describe Petstore::OuterComposite do
end end
describe 'test attribute "my_number"' do describe 'test attribute "my_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "my_string"' do describe 'test attribute "my_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "my_boolean"' do describe 'test attribute "my_boolean"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::OuterObjectWithEnumProperty do
end end
describe 'test attribute "value"' do describe 'test attribute "value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,37 +27,37 @@ describe Petstore::Pet do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "category"' do describe 'test attribute "category"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "photo_urls"' do describe 'test attribute "photo_urls"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "tags"' do describe 'test attribute "tags"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "status"' do describe 'test attribute "status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["available", "pending", "sold"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["available", "pending", "sold"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { instance.status = value }.not_to raise_error # expect { instance.status = value }.not_to raise_error

View File

@ -27,13 +27,13 @@ describe Petstore::ReadOnlyFirst do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "baz"' do describe 'test attribute "baz"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::SpecialModelName do
end end
describe 'test attribute "special_property_name"' do describe 'test attribute "special_property_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::Tag do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,49 +27,49 @@ describe Petstore::User do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "username"' do describe 'test attribute "username"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "first_name"' do describe 'test attribute "first_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "last_name"' do describe 'test attribute "last_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "email"' do describe 'test attribute "email"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "password"' do describe 'test attribute "password"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "phone"' do describe 'test attribute "phone"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "user_status"' do describe 'test attribute "user_status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'AnotherFakeApi' do
# @return [Client] # @return [Client]
describe 'call_123_test_special_tags test' do describe 'call_123_test_special_tags test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -37,7 +37,7 @@ describe 'DefaultApi' do
# @return [InlineResponseDefault] # @return [InlineResponseDefault]
describe 'foo_get test' do describe 'foo_get test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -38,7 +38,7 @@ describe 'FakeApi' do
# @return [HealthCheckResult] # @return [HealthCheckResult]
describe 'fake_health_get test' do describe 'fake_health_get test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'fake_http_signature_test test' do describe 'fake_http_signature_test test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -62,7 +62,7 @@ describe 'FakeApi' do
# @return [Boolean] # @return [Boolean]
describe 'fake_outer_boolean_serialize test' do describe 'fake_outer_boolean_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -73,7 +73,7 @@ describe 'FakeApi' do
# @return [OuterComposite] # @return [OuterComposite]
describe 'fake_outer_composite_serialize test' do describe 'fake_outer_composite_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -84,7 +84,7 @@ describe 'FakeApi' do
# @return [Float] # @return [Float]
describe 'fake_outer_number_serialize test' do describe 'fake_outer_number_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -95,7 +95,7 @@ describe 'FakeApi' do
# @return [String] # @return [String]
describe 'fake_outer_string_serialize test' do describe 'fake_outer_string_serialize test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -106,7 +106,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_body_with_file_schema test' do describe 'test_body_with_file_schema test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -117,7 +117,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_body_with_query_params test' do describe 'test_body_with_query_params test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -129,7 +129,7 @@ describe 'FakeApi' do
# @return [Client] # @return [Client]
describe 'test_client_model test' do describe 'test_client_model test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -154,7 +154,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_endpoint_parameters test' do describe 'test_endpoint_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -173,7 +173,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_enum_parameters test' do describe 'test_enum_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -190,7 +190,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_group_parameters test' do describe 'test_group_parameters test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -201,7 +201,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_inline_additional_properties test' do describe 'test_inline_additional_properties test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -213,7 +213,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_json_form_data test' do describe 'test_json_form_data test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -228,7 +228,7 @@ describe 'FakeApi' do
# @return [nil] # @return [nil]
describe 'test_query_parameter_collection_format test' do describe 'test_query_parameter_collection_format test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'FakeClassnameTags123Api' do
# @return [Client] # @return [Client]
describe 'test_classname test' do describe 'test_classname test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -39,7 +39,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'add_pet test' do describe 'add_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'delete_pet test' do describe 'delete_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -63,7 +63,7 @@ describe 'PetApi' do
# @return [Array<Pet>] # @return [Array<Pet>]
describe 'find_pets_by_status test' do describe 'find_pets_by_status test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -75,7 +75,7 @@ describe 'PetApi' do
# @return [Array<Pet>] # @return [Array<Pet>]
describe 'find_pets_by_tags test' do describe 'find_pets_by_tags test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -87,7 +87,7 @@ describe 'PetApi' do
# @return [Pet] # @return [Pet]
describe 'get_pet_by_id test' do describe 'get_pet_by_id test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -98,7 +98,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'update_pet test' do describe 'update_pet test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -111,7 +111,7 @@ describe 'PetApi' do
# @return [nil] # @return [nil]
describe 'update_pet_with_form test' do describe 'update_pet_with_form test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -124,7 +124,7 @@ describe 'PetApi' do
# @return [ApiResponse] # @return [ApiResponse]
describe 'upload_file test' do describe 'upload_file test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -137,7 +137,7 @@ describe 'PetApi' do
# @return [ApiResponse] # @return [ApiResponse]
describe 'upload_file_with_required_file test' do describe 'upload_file_with_required_file test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'StoreApi' do
# @return [nil] # @return [nil]
describe 'delete_order test' do describe 'delete_order test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'StoreApi' do
# @return [Hash<String, Integer>] # @return [Hash<String, Integer>]
describe 'get_inventory test' do describe 'get_inventory test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -63,7 +63,7 @@ describe 'StoreApi' do
# @return [Order] # @return [Order]
describe 'get_order_by_id test' do describe 'get_order_by_id test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -74,7 +74,7 @@ describe 'StoreApi' do
# @return [Order] # @return [Order]
describe 'place_order test' do describe 'place_order test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -40,7 +40,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_user test' do describe 'create_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -51,7 +51,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_users_with_array_input test' do describe 'create_users_with_array_input test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -62,7 +62,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'create_users_with_list_input test' do describe 'create_users_with_list_input test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -74,7 +74,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'delete_user test' do describe 'delete_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -85,7 +85,7 @@ describe 'UserApi' do
# @return [User] # @return [User]
describe 'get_user_by_name test' do describe 'get_user_by_name test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -97,7 +97,7 @@ describe 'UserApi' do
# @return [String] # @return [String]
describe 'login_user test' do describe 'login_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -107,7 +107,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'logout_user test' do describe 'logout_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
@ -120,7 +120,7 @@ describe 'UserApi' do
# @return [nil] # @return [nil]
describe 'update_user test' do describe 'update_user test' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'AdditionalPropertiesClass' do
end end
describe 'test attribute "map_property"' do describe 'test attribute "map_property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map_of_map_property"' do describe 'test attribute "map_of_map_property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,13 +27,13 @@ describe Petstore::AllOfWithSingleRef do
end end
describe 'test attribute "username"' do describe 'test attribute "username"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "single_ref_type"' do describe 'test attribute "single_ref_type"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'Animal' do
end end
describe 'test attribute "class_name"' do describe 'test attribute "class_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "color"' do describe 'test attribute "color"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,19 +34,19 @@ describe 'ApiResponse' do
end end
describe 'test attribute "code"' do describe 'test attribute "code"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "type"' do describe 'test attribute "type"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "message"' do describe 'test attribute "message"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'ArrayOfArrayOfNumberOnly' do
end end
describe 'test attribute "array_array_number"' do describe 'test attribute "array_array_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'ArrayOfNumberOnly' do
end end
describe 'test attribute "array_number"' do describe 'test attribute "array_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,19 +34,19 @@ describe 'ArrayTest' do
end end
describe 'test attribute "array_of_string"' do describe 'test attribute "array_of_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_array_of_integer"' do describe 'test attribute "array_array_of_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_array_of_model"' do describe 'test attribute "array_array_of_model"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,37 +34,37 @@ describe 'Capitalization' do
end end
describe 'test attribute "small_camel"' do describe 'test attribute "small_camel"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "capital_camel"' do describe 'test attribute "capital_camel"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "small_snake"' do describe 'test attribute "small_snake"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "capital_snake"' do describe 'test attribute "capital_snake"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "sca_eth_flow_points"' do describe 'test attribute "sca_eth_flow_points"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "att_name"' do describe 'test attribute "att_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'CatAllOf' do
end end
describe 'test attribute "declawed"' do describe 'test attribute "declawed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'Cat' do
end end
describe 'test attribute "declawed"' do describe 'test attribute "declawed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'Category' do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'ClassModel' do
end end
describe 'test attribute "_class"' do describe 'test attribute "_class"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'Client' do
end end
describe 'test attribute "client"' do describe 'test attribute "client"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::DeprecatedObject do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'DogAllOf' do
end end
describe 'test attribute "breed"' do describe 'test attribute "breed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'Dog' do
end end
describe 'test attribute "breed"' do describe 'test attribute "breed"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'EnumArrays' do
end end
describe 'test attribute "just_symbol"' do describe 'test attribute "just_symbol"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', [">=", "$"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', [">=", "$"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.just_symbol = value }.not_to raise_error # expect { @instance.just_symbol = value }.not_to raise_error
@ -44,7 +44,7 @@ describe 'EnumArrays' do
describe 'test attribute "array_enum"' do describe 'test attribute "array_enum"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["fish", "crab"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["fish", "crab"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.array_enum = value }.not_to raise_error # expect { @instance.array_enum = value }.not_to raise_error

View File

@ -34,7 +34,7 @@ describe 'EnumTest' do
end end
describe 'test attribute "enum_string"' do describe 'test attribute "enum_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.enum_string = value }.not_to raise_error # expect { @instance.enum_string = value }.not_to raise_error
@ -44,7 +44,7 @@ describe 'EnumTest' do
describe 'test attribute "enum_string_required"' do describe 'test attribute "enum_string_required"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["UPPER", "lower", ""])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.enum_string_required = value }.not_to raise_error # expect { @instance.enum_string_required = value }.not_to raise_error
@ -54,7 +54,7 @@ describe 'EnumTest' do
describe 'test attribute "enum_integer"' do describe 'test attribute "enum_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [1, -1]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [1, -1])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.enum_integer = value }.not_to raise_error # expect { @instance.enum_integer = value }.not_to raise_error
@ -64,7 +64,7 @@ describe 'EnumTest' do
describe 'test attribute "enum_number"' do describe 'test attribute "enum_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Float', [1.1, -1.2]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Float', [1.1, -1.2])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.enum_number = value }.not_to raise_error # expect { @instance.enum_number = value }.not_to raise_error
@ -74,25 +74,25 @@ describe 'EnumTest' do
describe 'test attribute "outer_enum"' do describe 'test attribute "outer_enum"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_integer"' do describe 'test attribute "outer_enum_integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_default_value"' do describe 'test attribute "outer_enum_default_value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "outer_enum_integer_default_value"' do describe 'test attribute "outer_enum_integer_default_value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'FileSchemaTestClass' do
end end
describe 'test attribute "file"' do describe 'test attribute "file"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "files"' do describe 'test attribute "files"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'File' do
end end
describe 'test attribute "source_uri"' do describe 'test attribute "source_uri"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::FooGetDefaultResponse do
end end
describe 'test attribute "string"' do describe 'test attribute "string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'Foo' do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,91 +34,91 @@ describe 'FormatTest' do
end end
describe 'test attribute "integer"' do describe 'test attribute "integer"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "int32"' do describe 'test attribute "int32"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "int64"' do describe 'test attribute "int64"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "number"' do describe 'test attribute "number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "float"' do describe 'test attribute "float"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "double"' do describe 'test attribute "double"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "string"' do describe 'test attribute "string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "byte"' do describe 'test attribute "byte"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "binary"' do describe 'test attribute "binary"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date"' do describe 'test attribute "date"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_time"' do describe 'test attribute "date_time"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "password"' do describe 'test attribute "password"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pattern_with_digits"' do describe 'test attribute "pattern_with_digits"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pattern_with_digits_and_delimiter"' do describe 'test attribute "pattern_with_digits_and_delimiter"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'HasOnlyReadOnly' do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "foo"' do describe 'test attribute "foo"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'HealthCheckResult' do
end end
describe 'test attribute "nullable_message"' do describe 'test attribute "nullable_message"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'List' do
end end
describe 'test attribute "_123_list"' do describe 'test attribute "_123_list"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'MapTest' do
end end
describe 'test attribute "map_map_of_string"' do describe 'test attribute "map_map_of_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map_of_enum_string"' do describe 'test attribute "map_of_enum_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Hash<String, String>', ["UPPER", "lower"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('Hash<String, String>', ["UPPER", "lower"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.map_of_enum_string = value }.not_to raise_error # expect { @instance.map_of_enum_string = value }.not_to raise_error
@ -50,13 +50,13 @@ describe 'MapTest' do
describe 'test attribute "direct_map"' do describe 'test attribute "direct_map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "indirect_map"' do describe 'test attribute "indirect_map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,19 +34,19 @@ describe 'MixedPropertiesAndAdditionalPropertiesClass' do
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_time"' do describe 'test attribute "date_time"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "map"' do describe 'test attribute "map"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'Model200Response' do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "_class"' do describe 'test attribute "_class"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'ModelReturn' do
end end
describe 'test attribute "_return"' do describe 'test attribute "_return"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,25 +34,25 @@ describe 'Name' do
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "snake_case"' do describe 'test attribute "snake_case"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "property"' do describe 'test attribute "property"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "_123_number"' do describe 'test attribute "_123_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,73 +34,73 @@ describe 'NullableClass' do
end end
describe 'test attribute "integer_prop"' do describe 'test attribute "integer_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "number_prop"' do describe 'test attribute "number_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "boolean_prop"' do describe 'test attribute "boolean_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "string_prop"' do describe 'test attribute "string_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "date_prop"' do describe 'test attribute "date_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "datetime_prop"' do describe 'test attribute "datetime_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_nullable_prop"' do describe 'test attribute "array_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_and_items_nullable_prop"' do describe 'test attribute "array_and_items_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "array_items_nullable"' do describe 'test attribute "array_items_nullable"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_nullable_prop"' do describe 'test attribute "object_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_and_items_nullable_prop"' do describe 'test attribute "object_and_items_nullable_prop"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "object_items_nullable"' do describe 'test attribute "object_items_nullable"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'NumberOnly' do
end end
describe 'test attribute "just_number"' do describe 'test attribute "just_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,25 +27,25 @@ describe Petstore::ObjectWithDeprecatedFields do
end end
describe 'test attribute "uuid"' do describe 'test attribute "uuid"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "deprecated_ref"' do describe 'test attribute "deprecated_ref"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "bars"' do describe 'test attribute "bars"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,31 +34,31 @@ describe 'Order' do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "pet_id"' do describe 'test attribute "pet_id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "quantity"' do describe 'test attribute "quantity"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "ship_date"' do describe 'test attribute "ship_date"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "status"' do describe 'test attribute "status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["placed", "approved", "delivered"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["placed", "approved", "delivered"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.status = value }.not_to raise_error # expect { @instance.status = value }.not_to raise_error
@ -68,7 +68,7 @@ describe 'Order' do
describe 'test attribute "complete"' do describe 'test attribute "complete"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,19 +34,19 @@ describe 'OuterComposite' do
end end
describe 'test attribute "my_number"' do describe 'test attribute "my_number"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "my_string"' do describe 'test attribute "my_string"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "my_boolean"' do describe 'test attribute "my_boolean"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -27,7 +27,7 @@ describe Petstore::OuterObjectWithEnumProperty do
end end
describe 'test attribute "value"' do describe 'test attribute "value"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,37 +34,37 @@ describe 'Pet' do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "category"' do describe 'test attribute "category"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "photo_urls"' do describe 'test attribute "photo_urls"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "tags"' do describe 'test attribute "tags"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "status"' do describe 'test attribute "status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["available", "pending", "sold"]) # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["available", "pending", "sold"])
# validator.allowable_values.each do |value| # validator.allowable_values.each do |value|
# expect { @instance.status = value }.not_to raise_error # expect { @instance.status = value }.not_to raise_error

View File

@ -34,13 +34,13 @@ describe 'ReadOnlyFirst' do
end end
describe 'test attribute "bar"' do describe 'test attribute "bar"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "baz"' do describe 'test attribute "baz"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,7 +34,7 @@ describe 'SpecialModelName' do
end end
describe 'test attribute "special_property_name"' do describe 'test attribute "special_property_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,13 +34,13 @@ describe 'Tag' do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "name"' do describe 'test attribute "name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

View File

@ -34,49 +34,49 @@ describe 'User' do
end end
describe 'test attribute "id"' do describe 'test attribute "id"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "username"' do describe 'test attribute "username"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "first_name"' do describe 'test attribute "first_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "last_name"' do describe 'test attribute "last_name"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "email"' do describe 'test attribute "email"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "password"' do describe 'test attribute "password"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "phone"' do describe 'test attribute "phone"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end
describe 'test attribute "user_status"' do describe 'test attribute "user_status"' do
it 'should work' do it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
end end
end end

Some files were not shown because too many files have changed in this diff Show More