diff options
author | David Stanek <dstanek@dstanek.com> | 2010-05-21 23:40:04 -0400 |
---|---|---|
committer | David Stanek <dstanek@dstanek.com> | 2010-05-21 23:40:04 -0400 |
commit | b06c5c724b507a0059caf645c42991f83b86aec2 (patch) | |
tree | bbd0a67b2c23c1161de64e8a20102512f1fff3d7 /test/test_testplugin.py | |
parent | 59d386b3d2551b7b09990a55cd3cb6581fe0c5f4 (diff) | |
download | python-coveragepy-git-b06c5c724b507a0059caf645c42991f83b86aec2.tar.gz |
cleaned up the code for the nose plugin
Diffstat (limited to 'test/test_testplugin.py')
-rw-r--r-- | test/test_testplugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_testplugin.py b/test/test_testplugin.py index c216ead6..87e2e4bc 100644 --- a/test/test_testplugin.py +++ b/test/test_testplugin.py @@ -4,10 +4,10 @@ from nose.plugins import PluginTester from coverage.noseplugin import Coverage class TestCoverage(PluginTester, unittest.TestCase): - activate = '--with-coverage_new' # enables the plugin + activate = '--with-coverage' # enables the plugin plugins = [Coverage()] args = ['--cover-action=report'] - + @py.test.mark.skipif(True) # "requires nose test runner" def test_output(self): assert "Processing Coverage..." in self.output, ( |