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

Unified Diff: tools/telemetry/telemetry/testing/disabled_cases.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: tools/telemetry/telemetry/testing/disabled_cases.py
diff --git a/tools/telemetry/telemetry/testing/disabled_cases.py b/tools/telemetry/telemetry/testing/disabled_cases.py
deleted file mode 100644
index bb4641a5897f04c8c7a42d5cfd663b748ab4de5d..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/testing/disabled_cases.py
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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.
-
-import unittest
-
-from telemetry import decorators
-
-
-# These are not real unittests.
-# They are merely to test our Enable/Disable annotations.
-class DisabledCases(unittest.TestCase):
-
- def testAllEnabled(self):
- pass
-
- @decorators.Disabled('all')
- def testAllDisabled(self):
- pass
-
- @decorators.Enabled('mavericks')
- def testMavericksOnly(self):
- pass
-
- @decorators.Disabled('mavericks')
- def testNoMavericks(self):
- pass
-
- @decorators.Enabled('mac')
- def testMacOnly(self):
- pass
-
- @decorators.Disabled('mac')
- def testNoMac(self):
- pass
-
- @decorators.Enabled('chromeos')
- def testChromeOSOnly(self):
- pass
-
- @decorators.Disabled('chromeos')
- def testNoChromeOS(self):
- pass
-
- @decorators.Enabled('win', 'linux')
- def testWinOrLinuxOnly(self):
- pass
-
- @decorators.Disabled('win', 'linux')
- def testNoWinLinux(self):
- pass
-
- @decorators.Enabled('system')
- def testSystemOnly(self):
- pass
-
- @decorators.Disabled('system')
- def testNoSystem(self):
- pass
-
- @decorators.Enabled('has tabs')
- def testHasTabs(self):
- pass
« no previous file with comments | « tools/telemetry/telemetry/testing/decorators_unittest.py ('k') | tools/telemetry/telemetry/testing/fakes/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698