update pet store test case for perl after switching spec

This commit is contained in:
wing328
2016-04-13 23:01:09 +08:00
parent 8f70230906
commit aa04bbb92e
15 changed files with 177 additions and 802 deletions

View File

@@ -37,14 +37,6 @@ isa_ok($api, 'WWW::SwaggerClient::StoreApi');
my $result = $api->delete_order(order_id => $order_id);
}
#
# find_orders_by_status test
#
{
my $status = undef; # replace NULL with a proper value
my $result = $api->find_orders_by_status(status => $status);
}
#
# get_inventory test
#
@@ -52,13 +44,6 @@ isa_ok($api, 'WWW::SwaggerClient::StoreApi');
my $result = $api->get_inventory();
}
#
# get_inventory_in_object test
#
{
my $result = $api->get_inventory_in_object();
}
#
# get_order_by_id test
#