summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-10-30 22:31:27 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-10-30 22:31:27 -0400
commit8f059350fda7801522e38e34c1e5851d2975fc7f (patch)
tree612e4762757a8e8b96526c3f83ec8e2b63bf586e /test/test_process.py
parentaa04705df95b2033376f6dab8bfcf83aa6293926 (diff)
downloadpython-coveragepy-8f059350fda7801522e38e34c1e5851d2975fc7f.tar.gz
Make execution with -m match Python more closely.
Diffstat (limited to 'test/test_process.py')
-rw-r--r--test/test_process.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_process.py b/test/test_process.py
index 4cf5524..085ac13 100644
--- a/test/test_process.py
+++ b/test/test_process.py
@@ -279,6 +279,12 @@ class ProcessTest(CoverageTest):
out2 = self.run_command("python run_me.py")
self.assertMultiLineEqual(out, out2)
+ def test_coverage_run_dashm_is_like_python_dashm(self):
+ # These -m commands assume the coverage tree is on the path.
+ out = self.run_command("coverage run -m test.try_execfile")
+ out2 = self.run_command("python -m test.try_execfile")
+ self.assertMultiLineEqual(out, out2)
+
if hasattr(os, 'fork'):
def test_fork(self):
self.make_file("fork.py", """\