diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-28 21:59:50 -0400 | 
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-28 21:59:50 -0400 | 
| commit | d5d41e59b5bcc476ee0d7fd7e1f84deca164ec8a (patch) | |
| tree | 7e7b3bb2a8823cd89ebea2f7bb5b7ee77594a5b4 /test/test_cmdline.py | |
| parent | 8b2364acc9025c8931d9a61b94be2268353deb12 (diff) | |
| download | python-coveragepy-git-d5d41e59b5bcc476ee0d7fd7e1f84deca164ec8a.tar.gz | |
Finish up the cmdline details for -b
Diffstat (limited to 'test/test_cmdline.py')
| -rw-r--r-- | test/test_cmdline.py | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py index 27fcd84e..8da78efe 100644 --- a/test/test_cmdline.py +++ b/test/test_cmdline.py @@ -24,9 +24,11 @@ class CmdLineTest(CoverageTest):      def testBadActionCombinations(self):          self.assertRaisesMsg(Exception, "You can't specify the 'erase' and 'annotate' options at the same time.", self.command_line, ['-e', '-a'])          self.assertRaisesMsg(Exception, "You can't specify the 'erase' and 'report' options at the same time.", self.command_line, ['-e', '-r']) +        self.assertRaisesMsg(Exception, "You can't specify the 'erase' and 'html' options at the same time.", self.command_line, ['-e', '-b'])          self.assertRaisesMsg(Exception, "You can't specify the 'erase' and 'combine' options at the same time.", self.command_line, ['-e', '-c'])          self.assertRaisesMsg(Exception, "You can't specify the 'execute' and 'annotate' options at the same time.", self.command_line, ['-x', '-a'])          self.assertRaisesMsg(Exception, "You can't specify the 'execute' and 'report' options at the same time.", self.command_line, ['-x', '-r']) +        self.assertRaisesMsg(Exception, "You can't specify the 'execute' and 'html' options at the same time.", self.command_line, ['-x', '-b'])          self.assertRaisesMsg(Exception, "You can't specify the 'execute' and 'combine' options at the same time.", self.command_line, ['-x', '-c'])      def testNeedAction(self):  | 
