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