Chromium Code Reviews| Index: tools/telemetry/telemetry/components/components_unittest.py |
| diff --git a/tools/telemetry/telemetry/components/components_unittest.py b/tools/telemetry/telemetry/components/components_unittest.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..31ebf22b6d44efd2cc51bfa3217058edfe54068c |
| --- /dev/null |
| +++ b/tools/telemetry/telemetry/components/components_unittest.py |
| @@ -0,0 +1,11 @@ |
| +# Copyright (c) 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. |
| +from telemetry.components import components_project |
| +from tvcm import module_test_case |
| + |
| +def load_tests(_, _2, _3): |
| + project = components_project.ComponentsProject() |
| + return module_test_case.DiscoverTestsInModule( |
| + project, |
| + project.telemetry_path) |
|
tonyg
2014/02/19 16:44:32
Should we consider an assertion that we found at l
|