From 9f323147ddf875ce158bd3f1792b69c4004b7caa Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 18 Jun 2010 21:08:11 -0400 Subject: All tests now use underscore names instead of some having camelCase names. --- test/test_process.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/test_process.py') 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 -- cgit v1.2.1