diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-17 06:36:08 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-17 06:36:08 -0400 |
| commit | cb284f664f11d5a7765354bb1f7c217d8e3a4b12 (patch) | |
| tree | a2905df281a535ff0cd8a5a8a6f06dceecf096b0 /test/test_execfile.py | |
| parent | 3ffed0b5dfbd50d4b9952548536710434fdc16bf (diff) | |
| download | python-coveragepy-cb284f664f11d5a7765354bb1f7c217d8e3a4b12.tar.gz | |
Finally realized that unit test classes should be named like any other class: after the instance they create.
Diffstat (limited to 'test/test_execfile.py')
| -rw-r--r-- | test/test_execfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_execfile.py b/test/test_execfile.py index d75bde0..b99e748 100644 --- a/test/test_execfile.py +++ b/test/test_execfile.py @@ -11,7 +11,7 @@ class Tee(object): for f in self.files: f.write(data) -class RunTests(unittest.TestCase): +class RunTest(unittest.TestCase): def setUp(self): self.oldstdout = sys.stdout self.stdout = cStringIO.StringIO() |
