diff options
Diffstat (limited to 'third_party/python/cram/cram/__init__.py')
-rw-r--r-- | third_party/python/cram/cram/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/python/cram/cram/__init__.py b/third_party/python/cram/cram/__init__.py new file mode 100644 index 0000000000..4b626c4027 --- /dev/null +++ b/third_party/python/cram/cram/__init__.py @@ -0,0 +1,6 @@ +"""Functional testing framework for command line applications""" + +from cram._main import main +from cram._test import test, testfile + +__all__ = ['main', 'test', 'testfile'] |