assamtest

mocha-style tests for python
git clone https://git.ce9e.org/assamtest.git

commit
c41d3a57226ec0634367fa0bcc2c8f578f25d971
parent
588cd93b65b6b6b7132ecdc21e5d5939c2e14ea8
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2019-02-09 10:05
mv test setup to separate module

Diffstat

M assamtest/__main__.py 2 +-
R assamtest/__init__.py -> assamtest/test.py 0

2 files changed, 1 insertions, 1 deletions


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     6 
    7    -1 from . 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 

diff --git a/assamtest/__init__.py b/assamtest/test.py