|
1 |
| -# API |
2 |
| -from .core import DeferrableTestCase, AWAIT_WORKER, expectedFailure |
| 1 | +from .core import AWAIT_WORKER |
| 2 | +from .core import DeferrableTestCase |
| 3 | +from .core import expectedFailure |
| 4 | +from .helpers import OverridePreferencesTestCase |
| 5 | +from .helpers import TempDirectoryTestCase |
| 6 | +from .helpers import ViewTestCase |
3 | 7 | from .scheduler import run_scheduler
|
4 | 8 |
|
5 |
| -# commands |
6 |
| -from .color_scheme import UnitTestingColorSchemeCommand |
7 |
| -from .coverage import UnitTestingCoverageCommand |
8 |
| -from .current import UnitTestingCurrentFileCommand |
9 |
| -from .current import UnitTestingCurrentFileCoverageCommand |
10 |
| -from .current import UnitTestingCurrentPackageCommand |
11 |
| -from .current import UnitTestingCurrentPackageCoverageCommand |
12 |
| -from .package import UnitTestingCommand |
13 |
| -from .syntax import UnitTestingSyntaxCommand |
14 |
| -from .syntax import UnitTestingSyntaxCompatibilityCommand |
15 |
| - |
16 | 9 |
|
17 | 10 | __all__ = [
|
18 | 11 | "AWAIT_WORKER",
|
19 | 12 | "DeferrableTestCase",
|
20 | 13 | "expectedFailure",
|
21 | 14 | "run_scheduler",
|
22 |
| - "UnitTestingCommand", |
23 |
| - "UnitTestingCoverageCommand", |
24 |
| - "UnitTestingCurrentFileCommand", |
25 |
| - "UnitTestingCurrentFileCoverageCommand", |
26 |
| - "UnitTestingCurrentPackageCommand", |
27 |
| - "UnitTestingCurrentPackageCoverageCommand", |
28 |
| - "UnitTestingSyntaxCommand", |
29 |
| - "UnitTestingSyntaxCompatibilityCommand", |
30 |
| - "UnitTestingColorSchemeCommand", |
| 15 | + "OverridePreferencesTestCase", |
| 16 | + "TempDirectoryTestCase", |
| 17 | + "ViewTestCase", |
31 | 18 | ]
|
0 commit comments