Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
52867 views
1
"""
2
Automated regression/unit testing suite.
3
"""
4
5
__version__ = '0.2'
6
7
def digress(fixture):
8
"""
9
Command-line helper for Digress.
10
"""
11
from digress.cli import Dispatcher
12
Dispatcher(fixture).dispatch()
13
14