diff options
author | Christine Lytwynec <chris.lytwynec@gmail.com> | 2015-04-23 16:25:08 -0400 |
---|---|---|
committer | Christine Lytwynec <chris.lytwynec@gmail.com> | 2015-04-23 16:25:08 -0400 |
commit | aee7fba6b17bbcf9510e5891d154a52069b783b3 (patch) | |
tree | 7c75e383605cd4a50e00322cf472aa5f37af90a5 /tests/test_cmdline.py | |
parent | 161556f47ec6b8f7c0232c21fdbdd7cc25bd3d8e (diff) | |
download | python-coveragepy-aee7fba6b17bbcf9510e5891d154a52069b783b3.tar.gz |
Update tests
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 54d8419..b616ed5 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -213,13 +213,20 @@ class CmdLineTest(BaseCmdLineTest): """) def test_combine(self): - # coverage combine + # coverage combine with args self.cmd_executes("combine datadir1", """\ .coverage() .load() .combine(["datadir1"]) .save() """) + # coverage combine without args + self.cmd_executes("combine", """\ + .coverage() + .load() + .combine(None) + .save() + """) def test_debug(self): self.cmd_help("debug", "What information would you like: data, sys?") |