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

Unified Diff: tools/telemetry_tools/find_dependencies_unittest.py

Issue 103433002: [telemetry] Script for finding all Telemetry dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unit test file. Created 6 years, 10 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 | « tools/telemetry_tools/find_dependencies ('k') | tools/telemetry_tools/path_set.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « tools/telemetry_tools/find_dependencies ('k') | tools/telemetry_tools/path_set.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698