[python] Add field as a reserved word (#18279)

* add field as a reserved word

* remove tabs

* update
This commit is contained in:
William Cheng
2024-04-03 16:43:51 +08:00
committed by GitHub
parent 88204b247a
commit 2a39b29684
34 changed files with 692 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
# coding: utf-8
"""
OpenAPI Petstore
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
import datetime
from petstore_api.models.field import Field # noqa: E501
class TestField(unittest.TestCase):
"""Field unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def make_instance(self, include_optional) -> Field:
"""Test Field
include_option is a boolean, when False only required
params are included, when True both required and
optional params are included """
# uncomment below to create an instance of `Field`
"""
model = Field() # noqa: E501
if include_optional:
return Field(
dummy = ''
)
else:
return Field(
)
"""
def testField(self):
"""Test Field"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if __name__ == '__main__':
unittest.main()