Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Unified Diff: expect_tests/__init__.py

Issue 412773002: Copy expect_tests from build (Closed) Base URL: https://chromium.googlesource.com/infra/testing/expect_tests@master
Patch Set: Fancy ast walker Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | expect_tests/cover.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « README.md ('k') | expect_tests/cover.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698