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

Unified Diff: tests/trial_dir.py

Issue 7046110: Make TrialDirMixIn so it can be used stand alone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/trial_dir.py
diff --git a/tests/trial_dir.py b/tests/trial_dir.py
index 975a775883142af0130c2c0bd24e88ec2b3b6df0..7ba0633cee3a553a58f8d9305bac7219eec6eb80 100644
--- a/tests/trial_dir.py
+++ b/tests/trial_dir.py
@@ -65,8 +65,8 @@ class TrialDir(object):
logging.error('Leaking %s' % TrialDir.TRIAL_ROOT)
-class TestCase(unittest.TestCase):
- """Base unittest class that cleans off a trial directory in tearDown()."""
+class TrialDirMixIn(object):
+ """Stand alone mixin."""
Dirk Pranke 2011/06/14 06:22:09 This comment doesn't tell me anything about what t
def setUp(self):
# Create a specific directory just for the test.
self.trial = TrialDir(self.id())
@@ -80,6 +80,17 @@ class TestCase(unittest.TestCase):
return self.trial.root_dir
+class TestCase(unittest.TestCase, TrialDirMixIn):
+ """Base unittest class that cleans off a trial directory in tearDown()."""
+ def setUp(self):
+ unittest.TestCase.setUp(self)
+ TrialDirMixIn.setUp(self)
+
+ def tearDown(self):
+ TrialDirMixIn.tearDown(self)
+ unittest.TestCase.tearDown(self)
+
+
if '-l' in sys.argv:
# See SHOULD_LEAK definition in TrialDir for its purpose.
TrialDir.SHOULD_LEAK = True
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698