__init__.py 220 B

123456789101112
  1. """
  2. Automated regression/unit testing suite.
  3. """
  4. __version__ = '0.2'
  5. def digress(fixture):
  6. """
  7. Command-line helper for Digress.
  8. """
  9. from digress.cli import Dispatcher
  10. Dispatcher(fixture).dispatch()