remove corrupted files

This commit is contained in:
wing328
2019-06-27 12:12:44 +08:00
parent 6c9fefa7b5
commit 35a6f9d6e6
2 changed files with 0 additions and 101 deletions

View File

@@ -1,60 +0,0 @@
# WWW::OpenAPIClient::AnotherFakeApi
## Load the API package
```perl
use WWW::OpenAPIClient::Object::AnotherFakeApi;
```
All URIs are relative to *http://petstore.swagger.io:80/v2*
Method | HTTP request | Description
------------- | ------------- | -------------
[**call_123_test_special_tags**](AnotherFakeApi.md#call_123_test_special_tags) | **PATCH** /another-fake/dummy | To test special tags
# **call_123_test_special_tags**
> Client call_123_test_special_tags(client => $client)
To test special tags
To test special tags and operation ID starting with number
### Example
```perl
use Data::Dumper;
use WWW::OpenAPIClient::AnotherFakeApi;
my $api_instance = WWW::OpenAPIClient::AnotherFakeApi->new(
);
my $client = WWW::OpenAPIClient::Object::Client->new(); # Client | client model
eval {
my $result = $api_instance->call_123_test_special_tags(client => $client);
print Dumper($result);
};
if ($@) {
warn "Exception when calling AnotherFakeApi->call_123_test_special_tags: $@\n";
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**client** | [**Client**](Client.md)| client model |
### Return type
[**Client**](Client.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

View File

@@ -1,41 +0,0 @@
=begin comment
Swagger 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
Contact: apiteam@swagger.io
Generated by: https://github.com/swagger-api/swagger-codegen.git
=end comment
=cut
#
# NOTE: This class is auto generated by Swagger Codegen
# Please update the test cases below to test the API endpoints.
# Ref: https://github.com/swagger-api/swagger-codegen
#
use Test::More tests => 1; #TODO update number of test cases
use Test::Exception;
use lib 'lib';
use strict;
use warnings;
use_ok('WWW::OpenAPIClient::AnotherfakeApi');
my $api = WWW::OpenAPIClient::AnotherfakeApi->new();
isa_ok($api, 'WWW::OpenAPIClient::AnotherfakeApi');
#
# test_special_tags test
#
{
my $body = undef; # replace NULL with a proper value
my $result = $api->test_special_tags(body => $body);
}
1;