diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-05 10:00:02 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-05 10:00:02 -0400 |
commit | 14babb257b744323b70e18eb3ebffe848e6b70ee (patch) | |
tree | 253a6277e43d79d16682e76ef51130a7e90bf71f /coverage/test_helpers.py | |
parent | bbc47667b516ca54e3fc4edcc9bcbf567ed98109 (diff) | |
download | python-coveragepy-git-14babb257b744323b70e18eb3ebffe848e6b70ee.tar.gz |
Make the test helpers more correct on their own.
Diffstat (limited to 'coverage/test_helpers.py')
-rw-r--r-- | coverage/test_helpers.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/coverage/test_helpers.py b/coverage/test_helpers.py index efe68dcd..082fc15e 100644 --- a/coverage/test_helpers.py +++ b/coverage/test_helpers.py @@ -132,8 +132,13 @@ class StdStreamCapturingMixin(TestCase): return self.captured_stderr.getvalue() -class TempDirMixin(TestCase): - """A test case mixin that creates a temp directory and files in it.""" +class TempDirMixin(SysPathAwareMixin, ModuleAwareMixin, TestCase): + """A test case mixin that creates a temp directory and files in it. + + Includes SysPathAwareMixin and ModuleAwareMixin, because making and using + temp dirs like this will also need that kind of isolation. + + """ # Our own setting: most of these tests run in their own temp directory. run_in_temp_dir = True |