mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-03 00:43:46 +00:00
Better inline model resolver to handle inline schema in array item (#12104)
* better support of inline schema in array item * update tests * update samples * regenerate samples * fix allof naming, remove files * add files * update samples * update readme * fix tests * update samples * update samples * add new files * update test spec * add back tests * remove unused files * comment out python test * update js test using own spec * remove files * remove unused files * remove files * remove unused files * better handling of allOf with a single type * comment out go test * remove test_all_of_with_single_ref_single_ref_type.py * fix inline resolver, uncomment go test
This commit is contained in:
@@ -46,11 +46,11 @@
|
||||
object[property] = value;
|
||||
}
|
||||
|
||||
describe('UserType', function() {
|
||||
it('should create an instance of UserType', function() {
|
||||
// uncomment below and update the code to test UserType
|
||||
//var instance = new OpenApiPetstore.UserType();
|
||||
//expect(instance).to.be.a(OpenApiPetstore.UserType);
|
||||
describe('SingleRefType', function() {
|
||||
it('should create an instance of SingleRefType', function() {
|
||||
// uncomment below and update the code to test SingleRefType
|
||||
//var instance = new OpenApiPetstore.SingleRefType();
|
||||
//expect(instance).to.be.a(OpenApiPetstore.SingleRefType);
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user