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

Unified Diff: third_party/twisted_8_1/twisted/trial/test/suppression.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 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
Index: third_party/twisted_8_1/twisted/trial/test/suppression.py
diff --git a/third_party/twisted_8_1/twisted/trial/test/suppression.py b/third_party/twisted_8_1/twisted/trial/test/suppression.py
deleted file mode 100644
index 4c212378bd8a2426c4b5b0361b919a265c7c9d5a..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/trial/test/suppression.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# -*- test-case-name: twisted.trial.test.test_tests -*-
-
-import warnings
-
-from twisted.trial import unittest, util
-
-
-""" test to make sure that warning supression works at the module, method, and
-class levels
-"""
-
-METHOD_WARNING_MSG = "method warning message"
-CLASS_WARNING_MSG = "class warning message"
-MODULE_WARNING_MSG = "module warning message"
-
-class MethodWarning(Warning):
- pass
-
-class ClassWarning(Warning):
- pass
-
-class ModuleWarning(Warning):
- pass
-
-class EmitMixin:
- __counter = 0
-
- def _emit(self):
- warnings.warn(METHOD_WARNING_MSG + '_%s' % (EmitMixin.__counter), MethodWarning)
- warnings.warn(CLASS_WARNING_MSG + '_%s' % (EmitMixin.__counter), ClassWarning)
- warnings.warn(MODULE_WARNING_MSG + '_%s' % (EmitMixin.__counter), ModuleWarning)
- EmitMixin.__counter += 1
-
-
-class TestSuppression(unittest.TestCase, EmitMixin):
- def testSuppressMethod(self):
- self._emit()
- testSuppressMethod.suppress = [util.suppress(message=METHOD_WARNING_MSG)]
-
- def testSuppressClass(self):
- self._emit()
-
- def testOverrideSuppressClass(self):
- self._emit()
- testOverrideSuppressClass.suppress = []
-
-TestSuppression.suppress = [util.suppress(message=CLASS_WARNING_MSG)]
-
-
-class TestSuppression2(unittest.TestCase, EmitMixin):
- def testSuppressModule(self):
- self._emit()
-
-suppress = [util.suppress(message=MODULE_WARNING_MSG)]
-
-

Powered by Google App Engine
This is Rietveld 408576698