mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-07 14:56:11 +00:00
Adds not to CodegenComposedSchemas and uses it in python-exp (#12146)
Updates docs
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user