diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-18 21:08:11 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-18 21:08:11 -0400 |
commit | 9f323147ddf875ce158bd3f1792b69c4004b7caa (patch) | |
tree | 9aad289eb129d6f21718cdd10e3598a6c6e894a7 /test/test_process.py | |
parent | 2d939aec11b6d75b336c3e39cd53e221b40d854b (diff) | |
download | python-coveragepy-git-9f323147ddf875ce158bd3f1792b69c4004b7caa.tar.gz |
All tests now use underscore names instead of some having camelCase names.
Diffstat (limited to 'test/test_process.py')
-rw-r--r-- | test/test_process.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_process.py b/test/test_process.py index 1f8a9884..d59d0726 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -18,7 +18,7 @@ class ProcessTest(CoverageTest): num += 1 return num - def testSaveOnExit(self): + def test_save_on_exit(self): self.make_file("mycode.py", """\ h = "Hello" w = "world" @@ -28,7 +28,7 @@ class ProcessTest(CoverageTest): self.run_command("coverage -x mycode.py") self.assertTrue(os.path.exists(".coverage")) - def testEnvironment(self): + def test_environment(self): # Checks that we can import modules from the test directory at all! self.make_file("mycode.py", """\ import covmod1 @@ -42,7 +42,7 @@ class ProcessTest(CoverageTest): self.assertTrue(os.path.exists(".coverage")) self.assertEqual(out, 'done\n') - def testCombineParallelData(self): + def test_combine_parallel_data(self): self.make_file("b_or_c.py", """\ import sys a = 1 |