Index: tools/telemetry_tools/find_dependencies_unittest.py |
diff --git a/tools/telemetry_tools/find_dependencies_unittest.py b/tools/telemetry_tools/find_dependencies_unittest.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..48f11f0ee6ef8f2482b864b3d437ec439fe8ee2f |
--- /dev/null |
+++ b/tools/telemetry_tools/find_dependencies_unittest.py |
@@ -0,0 +1,24 @@ |
+#!/usr/bin/env python |
+# 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. |
+ |
+import os |
+import unittest |
+ |
+import find_dependencies |
+ |
+ |
+class FindDependenciesTest(unittest.TestCase): |
tonyg
2014/02/13 21:55:30
We want to implement this or remove it, right?
|
+ def testBootstrapDependencies(self): |
+ pass |
+ |
+ def testPythonDependencies(self): |
+ pass |
+ |
+ def testPageSetDependencies(self): |
+ pass |
+ |
+ |
+if __name__ == '__main__': |
+ unittest.main() |