- commit
- 1ea8307e21c656b0d7fa019761ad360b9274f40c
- parent
- 92c239ebc338d7cb5ed7bdd8821d2646867a520d
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2019-02-09 13:00
rename test to _test
Diffstat
| M | assamtest/__init__.py | 2 | +- |
| M | assamtest/__main__.py | 2 | +- |
| R | assamtest/test.py -> assamtest/_test.py | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/assamtest/__init__.py b/assamtest/__init__.py
@@ -1,3 +1,3 @@1 -1 from .test import suite, test, before, before_each, after, after_each-1 1 from ._test import suite, test, before, before_each, after, after_each 2 2 from .expect import expect 3 3 from .runner import Outcome
diff --git a/assamtest/__main__.py b/assamtest/__main__.py
@@ -4,7 +4,7 @@ import sys 4 4 import importlib 5 5 import pkgutil 6 67 -1 from .test import stack, _suite_push, _suite_pop-1 7 from ._test import stack, _suite_push, _suite_pop 8 8 from .reporter import SpecReporter 9 9 from .runner import run 10 10