Index: expect_tests/__init__.py |
diff --git a/expect_tests/__init__.py b/expect_tests/__init__.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..66195f1ff4132fe0fde1e12d20345e4be16b9698 |
--- /dev/null |
+++ b/expect_tests/__init__.py |
@@ -0,0 +1,18 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+""" |
+A parallelized, coverage-collecting, expectation-based testing framework. |
+""" |
+ |
+__version__ = '0.1' |
+__author__ = 'The Chromium Infrastructure Team' |
+__email__ = 'infra-dev@chromium.org' |
+__url__ = 'https://chromium.googlesource.com/infra/testing/expect_tests/' |
+ |
+from expect_tests.main import main |
+from expect_tests.type_definitions import Test, Result, FuncCall, Bind |
+from expect_tests.unittest_helper import UnitTestModule, UnittestTestCase |
+ |
+from expect_tests.util import covers |