Bugfix(Perl): Support nested primitive types in ARRARY or HASH for basic object (#2713)

* support nested primitive types in ARRARY or HASH for basic object

* run bin/perl-petstore.sh and bin/openapi3/{LANG}-petstore.sh
This commit is contained in:
Min Kim
2019-04-23 04:19:16 -04:00
committed by William Cheng
parent a4be2c0bb4
commit 06fdc925a5
106 changed files with 4906 additions and 550 deletions

View File

@@ -0,0 +1,33 @@
=begin comment
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: \" \\
OpenAPI spec version: 1.0.0
Generated by: https://openapi-generator.tech
=end comment
=cut
#
# NOTE: This class is auto generated by the OpenAPI Generator
# Please update the test cases below to test the model.
# Ref: https://openapi-generator.tech
#
use Test::More tests => 2;
use Test::Exception;
use lib 'lib';
use strict;
use warnings;
use_ok('WWW::OpenAPIClient::Object::AdditionalPropertiesBoolean');
my $instance = WWW::OpenAPIClient::Object::AdditionalPropertiesBoolean->new();
isa_ok($instance, 'WWW::OpenAPIClient::Object::AdditionalPropertiesBoolean');