Adds not to CodegenComposedSchemas and uses it in python-exp (#12146)

Updates docs
This commit is contained in:
Justin Black
2022-04-17 09:36:09 -07:00
committed by GitHub
parent 84167ca3db
commit e2e7609bac
189 changed files with 1039 additions and 58 deletions

View File

@@ -0,0 +1,35 @@
# 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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.any_type_not_string import AnyTypeNotString
class TestAnyTypeNotString(unittest.TestCase):
"""AnyTypeNotString unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def test_AnyTypeNotString(self):
"""Test AnyTypeNotString"""
# FIXME: construct object with mandatory attributes with example values
# model = AnyTypeNotString() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()