File: __init__.py

package info (click to toggle)
python-azure 20201208%2Bgit-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,437,920 kB
  • sloc: python: 4,287,452; javascript: 269; makefile: 198; sh: 187; xml: 106
file content (16 lines) | stat: -rw-r--r-- 836 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from .mgmt_testcase import (AzureMgmtTestCase, AzureMgmtPreparer)
from .azure_testcase import AzureTestCase, is_live, get_region_override
from .resource_testcase import (FakeResource, ResourceGroupPreparer, RandomNameResourceGroupPreparer, CachedResourceGroupPreparer)
from .storage_testcase import FakeStorageAccount, StorageAccountPreparer, CachedStorageAccountPreparer
from .keyvault_preparer import KeyVaultPreparer
from .powershell_preparer import PowerShellPreparer

__all__ = [
    'AzureMgmtTestCase', 'AzureMgmtPreparer',
    'FakeResource', 'ResourceGroupPreparer',
    'StorageAccountPreparer', 'CachedStorageAccountPreparer',
    'FakeStorageAccount',
    'AzureTestCase', 'is_live', 'get_region_override',
    'KeyVaultPreparer', 'RandomNameResourceGroupPreparer',
    'CachedResourceGroupPreparer', 'PowerShellPreparer'
]