@typespec/http-client-python 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eng/scripts/ci/regenerate.ts +25 -8
- package/eng/scripts/setup/__pycache__/venvtools.cpython-38.pyc +0 -0
- package/generator/build/lib/pygen/codegen/models/code_model.py +4 -0
- package/generator/build/lib/pygen/codegen/models/combined_type.py +4 -3
- package/generator/build/lib/pygen/codegen/models/credential_types.py +4 -0
- package/generator/build/lib/pygen/codegen/models/operation.py +8 -2
- package/generator/build/lib/pygen/codegen/models/operation_group.py +26 -1
- package/generator/build/lib/pygen/codegen/models/paging_operation.py +1 -1
- package/generator/build/lib/pygen/codegen/models/property.py +2 -2
- package/generator/build/lib/pygen/codegen/serializers/__init__.py +12 -2
- package/generator/build/lib/pygen/codegen/serializers/model_serializer.py +2 -2
- package/generator/build/lib/pygen/codegen/serializers/operation_groups_serializer.py +1 -0
- package/generator/build/lib/pygen/codegen/templates/operation_group.py.jinja2 +4 -4
- package/generator/build/lib/pygen/codegen/templates/operation_groups_container.py.jinja2 +2 -0
- package/generator/dist/pygen-0.1.0-py3-none-any.whl +0 -0
- package/generator/pygen/codegen/models/code_model.py +4 -0
- package/generator/pygen/codegen/models/combined_type.py +4 -3
- package/generator/pygen/codegen/models/credential_types.py +4 -0
- package/generator/pygen/codegen/models/operation.py +8 -2
- package/generator/pygen/codegen/models/operation_group.py +26 -1
- package/generator/pygen/codegen/models/paging_operation.py +1 -1
- package/generator/pygen/codegen/models/property.py +2 -2
- package/generator/pygen/codegen/serializers/__init__.py +12 -2
- package/generator/pygen/codegen/serializers/model_serializer.py +2 -2
- package/generator/pygen/codegen/serializers/operation_groups_serializer.py +1 -0
- package/generator/pygen/codegen/templates/operation_group.py.jinja2 +4 -4
- package/generator/pygen/codegen/templates/operation_groups_container.py.jinja2 +2 -0
- package/generator/test/azure/mock_api_tests/conftest.py +57 -1
- package/generator/test/azure/mock_api_tests/data/image.jpg +0 -0
- package/generator/test/azure/mock_api_tests/data/image.png +0 -0
- package/generator/test/generic_mock_api_tests/conftest.py +0 -43
- package/generator/test/unbranded/mock_api_tests/asynctests/test_encode_duration_async.py +63 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_encode_numeric_async.py +35 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_parameters_basic_async.py +24 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_parameters_spread_async.py +76 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_payload_content_negotiation_async.py +37 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_payload_multipart_async.py +154 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_serialization_encoded_name_json_async.py +24 -0
- package/generator/test/unbranded/mock_api_tests/asynctests/test_special_words_async.py +43 -0
- package/generator/test/unbranded/mock_api_tests/conftest.py +57 -0
- package/generator/test/unbranded/mock_api_tests/data/image.jpg +0 -0
- package/generator/test/unbranded/mock_api_tests/data/image.png +0 -0
- package/generator/test/unbranded/mock_api_tests/test_encode_duration.py +60 -0
- package/generator/test/unbranded/mock_api_tests/test_encode_numeric.py +32 -0
- package/generator/test/unbranded/mock_api_tests/test_parameters_basic.py +22 -0
- package/generator/test/unbranded/mock_api_tests/test_parameters_spread.py +66 -0
- package/generator/test/unbranded/mock_api_tests/test_payload_content_negotiation.py +33 -0
- package/generator/test/unbranded/mock_api_tests/test_payload_multipart.py +141 -0
- package/generator/test/unbranded/mock_api_tests/test_serialization_encoded_name_json.py +22 -0
- package/generator/test/unbranded/mock_api_tests/test_special_words.py +39 -0
- package/package.json +1 -1
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_encode_duration_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_encode_numeric_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_parameters_basic_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_parameters_spread_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_payload_content_negotiation_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_payload_multipart_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_serialization_encoded_name_json_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/asynctests/test_special_words_async.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_encode_duration.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_encode_numeric.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_parameters_basic.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_parameters_spread.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_payload_content_negotiation.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_payload_multipart.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_serialization_encoded_name_json.py +0 -0
- /package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_special_words.py +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
import pytest
|
|
7
|
+
from parameters.basic import BasicClient
|
|
8
|
+
from parameters.basic.explicitbody.models import User
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@pytest.fixture
|
|
12
|
+
def client():
|
|
13
|
+
with BasicClient() as client:
|
|
14
|
+
yield client
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def test_explicit_simple(client: BasicClient):
|
|
18
|
+
client.explicit_body.simple(User(name="foo"))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def test_implicit_simple(client: BasicClient):
|
|
22
|
+
client.implicit_body.simple(name="foo")
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
import pytest
|
|
7
|
+
from parameters.spread import SpreadClient
|
|
8
|
+
from parameters.spread.model.models import BodyParameter
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@pytest.fixture
|
|
12
|
+
def client():
|
|
13
|
+
with SpreadClient() as client:
|
|
14
|
+
yield client
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def test_model_body(client: SpreadClient):
|
|
18
|
+
client.model.spread_as_request_body(name="foo")
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def test_model_composite_request_only_with_body(client: SpreadClient):
|
|
22
|
+
client.model.spread_composite_request_only_with_body(BodyParameter(name="foo"))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def test_model_composite_request_without_body(client: SpreadClient):
|
|
26
|
+
client.model.spread_composite_request_without_body(name="foo", test_header="bar")
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def test_model_composite_request(client: SpreadClient):
|
|
30
|
+
client.model.spread_composite_request(name="foo", body=BodyParameter(name="foo"), test_header="bar")
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def test_model_composite_request_mix(client: SpreadClient):
|
|
34
|
+
client.model.spread_composite_request_mix(name="foo", prop="foo", test_header="bar")
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def test_alias_body(client: SpreadClient):
|
|
38
|
+
client.alias.spread_as_request_body(name="foo")
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def test_alias_parameter(client: SpreadClient):
|
|
42
|
+
client.alias.spread_as_request_parameter("1", x_ms_test_header="bar", name="foo")
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def test_alias_multiple_parameter(client: SpreadClient):
|
|
46
|
+
client.alias.spread_with_multiple_parameters(
|
|
47
|
+
"1",
|
|
48
|
+
x_ms_test_header="bar",
|
|
49
|
+
required_string="foo",
|
|
50
|
+
required_int_list=[1, 2],
|
|
51
|
+
optional_string_list=["foo", "bar"],
|
|
52
|
+
optional_int=1,
|
|
53
|
+
)
|
|
54
|
+
client.alias.spread_with_multiple_parameters(
|
|
55
|
+
"1",
|
|
56
|
+
{"requiredString": "foo", "optionalInt": 1, "requiredIntList": [1, 2], "optionalStringList": ["foo", "bar"]},
|
|
57
|
+
x_ms_test_header="bar",
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
def test_inner_model(client: SpreadClient):
|
|
62
|
+
client.alias.spread_parameter_with_inner_model(id="1", x_ms_test_header="bar", body={"name": "foo"})
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def test_inner_alias(client: SpreadClient):
|
|
66
|
+
client.alias.spread_parameter_with_inner_alias(id="1", x_ms_test_header="bar", body={"name": "foo", "age": 1})
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
import base64
|
|
7
|
+
import pytest
|
|
8
|
+
from payload.contentnegotiation import ContentNegotiationClient
|
|
9
|
+
from payload.contentnegotiation.differentbody.models import PngImageAsJson
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@pytest.fixture
|
|
13
|
+
def client():
|
|
14
|
+
with ContentNegotiationClient(endpoint="http://localhost:3000") as client:
|
|
15
|
+
yield client
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def test_get_avatar_as_png(client: ContentNegotiationClient, png_data: bytes):
|
|
19
|
+
assert b"".join(client.same_body.get_avatar_as_png()) == png_data
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def test_get_avatar_as_jpeg(client: ContentNegotiationClient, jpg_data: bytes):
|
|
23
|
+
assert b"".join(client.same_body.get_avatar_as_jpeg()) == jpg_data
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def test_different_body_get_avatar_as_png(client: ContentNegotiationClient, png_data: bytes):
|
|
27
|
+
assert b"".join(client.different_body.get_avatar_as_png()) == png_data
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def test_different_body_get_avatar_as_json(client: ContentNegotiationClient, png_data: bytes):
|
|
31
|
+
result = client.different_body.get_avatar_as_json()
|
|
32
|
+
expected = PngImageAsJson(content=base64.b64encode(png_data).decode())
|
|
33
|
+
assert result == expected
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
import pytest
|
|
8
|
+
from payload.multipart import MultiPartClient, models
|
|
9
|
+
from payload.multipart.formdata.httpparts.nonstring.models import FloatRequest
|
|
10
|
+
|
|
11
|
+
JPG = Path(__file__).parent / "data/image.jpg"
|
|
12
|
+
PNG = Path(__file__).parent / "data/image.png"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@pytest.fixture
|
|
16
|
+
def client():
|
|
17
|
+
with MultiPartClient(endpoint="http://localhost:3000") as client:
|
|
18
|
+
yield client
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def test_anonymous_model(client: MultiPartClient):
|
|
22
|
+
client.form_data.anonymous_model({"profileImage": open(str(JPG), "rb")})
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def test_basic(client: MultiPartClient):
|
|
26
|
+
client.form_data.basic(
|
|
27
|
+
models.MultiPartRequest(
|
|
28
|
+
id="123",
|
|
29
|
+
profile_image=open(str(JPG), "rb"),
|
|
30
|
+
)
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def test_binary_array_parts(client: MultiPartClient):
|
|
35
|
+
client.form_data.binary_array_parts(
|
|
36
|
+
models.BinaryArrayPartsRequest(
|
|
37
|
+
id="123",
|
|
38
|
+
pictures=[
|
|
39
|
+
open(str(PNG), "rb"),
|
|
40
|
+
open(str(PNG), "rb"),
|
|
41
|
+
],
|
|
42
|
+
)
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def test_check_file_name_and_content_type(client: MultiPartClient):
|
|
47
|
+
client.form_data.check_file_name_and_content_type(
|
|
48
|
+
models.MultiPartRequest(
|
|
49
|
+
id="123",
|
|
50
|
+
profile_image=("hello.jpg", open(str(JPG), "rb"), "image/jpg"),
|
|
51
|
+
)
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def test_complex(client: MultiPartClient):
|
|
56
|
+
client.form_data.file_array_and_basic(
|
|
57
|
+
models.ComplexPartsRequest(
|
|
58
|
+
id="123",
|
|
59
|
+
address=models.Address(city="X"),
|
|
60
|
+
pictures=[
|
|
61
|
+
open(str(PNG), "rb"),
|
|
62
|
+
open(str(PNG), "rb"),
|
|
63
|
+
],
|
|
64
|
+
profile_image=open(str(JPG), "rb"),
|
|
65
|
+
)
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def test_json_part(client: MultiPartClient):
|
|
70
|
+
client.form_data.json_part(
|
|
71
|
+
models.JsonPartRequest(
|
|
72
|
+
address=models.Address(city="X"),
|
|
73
|
+
profile_image=open(str(JPG), "rb"),
|
|
74
|
+
)
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def test_multi_binary_parts(client: MultiPartClient):
|
|
79
|
+
client.form_data.multi_binary_parts(
|
|
80
|
+
models.MultiBinaryPartsRequest(
|
|
81
|
+
profile_image=open(str(JPG), "rb"),
|
|
82
|
+
picture=open(str(PNG), "rb"),
|
|
83
|
+
)
|
|
84
|
+
)
|
|
85
|
+
client.form_data.multi_binary_parts(
|
|
86
|
+
models.MultiBinaryPartsRequest(
|
|
87
|
+
profile_image=open(str(JPG), "rb"),
|
|
88
|
+
)
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
def test_file_with_http_part_specific_content_type(client: MultiPartClient):
|
|
93
|
+
client.form_data.http_parts.content_type.image_jpeg_content_type(
|
|
94
|
+
models.FileWithHttpPartSpecificContentTypeRequest(
|
|
95
|
+
profile_image=("hello.jpg", open(str(JPG), "rb"), "image/jpg"),
|
|
96
|
+
)
|
|
97
|
+
)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def test_file_with_http_part_required_content_type(client: MultiPartClient):
|
|
101
|
+
client.form_data.http_parts.content_type.required_content_type(
|
|
102
|
+
models.FileWithHttpPartRequiredContentTypeRequest(
|
|
103
|
+
profile_image=open(str(JPG), "rb"),
|
|
104
|
+
)
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def test_file_with_http_part_optional_content_type(client: MultiPartClient):
|
|
109
|
+
# call twice: one with content type, one without
|
|
110
|
+
client.form_data.http_parts.content_type.optional_content_type(
|
|
111
|
+
models.FileWithHttpPartOptionalContentTypeRequest(
|
|
112
|
+
profile_image=("hello.jpg", open(str(JPG), "rb").read()),
|
|
113
|
+
)
|
|
114
|
+
)
|
|
115
|
+
client.form_data.http_parts.content_type.optional_content_type(
|
|
116
|
+
models.FileWithHttpPartOptionalContentTypeRequest(
|
|
117
|
+
profile_image=("hello.jpg", open(str(JPG), "rb").read(), "application/octet-stream"),
|
|
118
|
+
)
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
def test_complex_with_http_part(client: MultiPartClient):
|
|
123
|
+
client.form_data.http_parts.json_array_and_file_array(
|
|
124
|
+
models.ComplexHttpPartsModelRequest(
|
|
125
|
+
id="123",
|
|
126
|
+
previous_addresses=[
|
|
127
|
+
models.Address(city="Y"),
|
|
128
|
+
models.Address(city="Z"),
|
|
129
|
+
],
|
|
130
|
+
address=models.Address(city="X"),
|
|
131
|
+
pictures=[
|
|
132
|
+
open(str(PNG), "rb"),
|
|
133
|
+
open(str(PNG), "rb"),
|
|
134
|
+
],
|
|
135
|
+
profile_image=open(str(JPG), "rb"),
|
|
136
|
+
)
|
|
137
|
+
)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def test_http_parts_non_string_float(client: MultiPartClient):
|
|
141
|
+
client.form_data.http_parts.non_string.float(FloatRequest(temperature=0.5))
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
import pytest
|
|
7
|
+
from serialization.encodedname.json import JsonClient
|
|
8
|
+
from serialization.encodedname.json.property import models
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@pytest.fixture
|
|
12
|
+
def client():
|
|
13
|
+
with JsonClient() as client:
|
|
14
|
+
yield client
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def test_property_send(client: JsonClient):
|
|
18
|
+
client.property.send(models.JsonEncodedNameModel(default_name=True))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def test_property_get(client: JsonClient):
|
|
22
|
+
assert client.property.get().default_name
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for
|
|
4
|
+
# license information.
|
|
5
|
+
# --------------------------------------------------------------------------
|
|
6
|
+
import pytest
|
|
7
|
+
from specialwords import SpecialWordsClient
|
|
8
|
+
from specialwords.models import models
|
|
9
|
+
from specialwords.modelproperties import models as model_properties_models
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@pytest.fixture
|
|
13
|
+
def client():
|
|
14
|
+
with SpecialWordsClient() as client:
|
|
15
|
+
yield client
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def test_operations(client: SpecialWordsClient, special_words):
|
|
19
|
+
for sw in special_words:
|
|
20
|
+
suffix = "" if sw == "constructor" else "_method"
|
|
21
|
+
getattr(client.operations, sw + suffix)()
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def test_parameter(client: SpecialWordsClient, special_words):
|
|
25
|
+
for sw in special_words:
|
|
26
|
+
suffix = "" if sw == "constructor" else "_parameter"
|
|
27
|
+
getattr(client.parameters, "with_" + sw)(**{sw + suffix: "ok"})
|
|
28
|
+
client.parameters.with_cancellation_token(cancellation_token="ok")
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def test_model(client: SpecialWordsClient, special_words):
|
|
32
|
+
for sw in special_words:
|
|
33
|
+
suffix = "" if sw == "constructor" else "Model"
|
|
34
|
+
model = getattr(models, sw.capitalize() + suffix)
|
|
35
|
+
getattr(client.models, "with_" + sw)(model(name="ok"))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def test_model_properties(client: SpecialWordsClient):
|
|
39
|
+
client.model_properties.same_as_model(model_properties_models.SameAsModel(same_as_model="ok"))
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_encode_duration.py
RENAMED
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_encode_numeric.py
RENAMED
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_parameters_basic.py
RENAMED
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_parameters_spread.py
RENAMED
|
File without changes
|
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_payload_multipart.py
RENAMED
|
File without changes
|
|
File without changes
|
/package/generator/test/{generic_mock_api_tests → azure/mock_api_tests}/test_special_words.py
RENAMED
|
File without changes
|