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 | 4749c14e6dd316b710419b276c09a90662ed2712 (patch) | |
tree | d894bd1d0df5510e3b65b891a49435126dc5eab4 /test/test_testplugin.py | |
parent | 4f3a0803c488997fee42b8f8781d67b959f81eae (diff) | |
download | python-coveragepy-4749c14e6dd316b710419b276c09a90662ed2712.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 c216ead..87e2e4b 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, ( |