-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Storage] Add proxy-supporting test classes (#24937)
- Loading branch information
Showing
4 changed files
with
214 additions
and
12 deletions.
There are no files selected for viewing
13 changes: 10 additions & 3 deletions
13
tools/azure-sdk-tools/devtools_testutils/storage/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
from .api_version_policy import ApiVersionAssertPolicy | ||
from .service_versions import service_version_map, ServiceVersion, is_version_before | ||
from .testcase import StorageTestCase, LogCaptured | ||
from .testcase import StorageTestCase, StorageRecordedTestCase, LogCaptured | ||
|
||
__all__ = ["ApiVersionAssertPolicy", "service_version_map", "StorageTestCase", "ServiceVersion", "is_version_before", | ||
"LogCaptured"] | ||
__all__ = [ | ||
"ApiVersionAssertPolicy", | ||
"service_version_map", | ||
"StorageTestCase", | ||
"StorageRecordedTestCase", | ||
"ServiceVersion", | ||
"is_version_before", | ||
"LogCaptured" | ||
] |
4 changes: 2 additions & 2 deletions
4
tools/azure-sdk-tools/devtools_testutils/storage/aio/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .asynctestcase import AsyncStorageTestCase | ||
from .asynctestcase import AsyncStorageTestCase, AsyncStorageRecordedTestCase | ||
|
||
__all__ = ["AsyncStorageTestCase"] | ||
__all__ = ["AsyncStorageTestCase", "AsyncStorageRecordedTestCase"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters