Skip to content

Commit 05c8dde

Browse files
author
deathaxe
committed
Expose API and hide Commands (#245)
This commit... 1. publishes test cases from helpers package directly under `unittesting` 2. hides ST command classes from `unittesting` module as they are needed for ST only.
1 parent d8984ae commit 05c8dde

File tree

2 files changed

+23
-37
lines changed

2 files changed

+23
-37
lines changed

plugin.py

+14-15
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,15 @@
1515
del sys.modules[module_name]
1616
prefix = None
1717

18-
import UnitTesting
19-
from UnitTesting import unittesting
20-
21-
sys.modules["unittesting"] = unittesting
22-
23-
24-
from unittesting import UnitTestingCommand
25-
from unittesting import UnitTestingCoverageCommand
26-
from unittesting import UnitTestingCurrentFileCommand
27-
from unittesting import UnitTestingCurrentFileCoverageCommand
28-
from unittesting import UnitTestingCurrentPackageCommand
29-
from unittesting import UnitTestingCurrentPackageCoverageCommand
30-
from unittesting import UnitTestingSyntaxCommand
31-
from unittesting import UnitTestingSyntaxCompatibilityCommand
32-
from unittesting import UnitTestingColorSchemeCommand
18+
from .unittesting.color_scheme import UnitTestingColorSchemeCommand
19+
from .unittesting.coverage import UnitTestingCoverageCommand
20+
from .unittesting.current import UnitTestingCurrentFileCommand
21+
from .unittesting.current import UnitTestingCurrentFileCoverageCommand
22+
from .unittesting.current import UnitTestingCurrentPackageCommand
23+
from .unittesting.current import UnitTestingCurrentPackageCoverageCommand
24+
from .unittesting.package import UnitTestingCommand
25+
from .unittesting.syntax import UnitTestingSyntaxCommand
26+
from .unittesting.syntax import UnitTestingSyntaxCompatibilityCommand
3327

3428

3529
__all__ = [
@@ -42,8 +36,13 @@
4236
"UnitTestingSyntaxCommand",
4337
"UnitTestingSyntaxCompatibilityCommand",
4438
"UnitTestingColorSchemeCommand",
39+
"plugin_loaded",
40+
"plugin_unloaded",
4541
]
4642

43+
# publish unittesting module
44+
sys.modules["unittesting"] = sys.modules["UnitTesting"].unittesting
45+
4746
UT33_CODE = """
4847
from UnitTesting import plugin as ut38 # noqa
4948

unittesting/__init__.py

+9-22
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,18 @@
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
37
from .scheduler import run_scheduler
48

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-
169

1710
__all__ = [
1811
"AWAIT_WORKER",
1912
"DeferrableTestCase",
2013
"expectedFailure",
2114
"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",
3118
]

0 commit comments

Comments
 (0)