summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-06-18 21:08:11 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-06-18 21:08:11 -0400
commit0790e2ff909fd4d0c4c19fc0d657fdaec82c4a94 (patch)
tree7c56af7bdc966f2c57108b13f4f6c8c3d336ac8b /test/test_process.py
parent82ba22eab07601fd698fce345e5cd7348e85cfa7 (diff)
downloadpython-coveragepy-0790e2ff909fd4d0c4c19fc0d657fdaec82c4a94.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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_process.py b/test/test_process.py
index 1f8a988..d59d072 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