diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 11:30:55 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 11:30:55 -0400 |
commit | c03628367b660ff2b52d6f88105fda75e5b080c8 (patch) | |
tree | 2a7697356316ccd52ce0b1f9b7ae861c81bdfd64 /test/test_testplugin.py | |
parent | b1a44a1f52f048727eb8064da3d70a43a3cbbcd2 (diff) | |
download | python-coveragepy-git-c03628367b660ff2b52d6f88105fda75e5b080c8.tar.gz |
Move the test runner plugins into their own sub-package.
--HG--
rename : coverage/noseplugin.py => coverage/runners/noseplugin.py
rename : coverage/testplugin.py => coverage/runners/pytestplugin.py
Diffstat (limited to 'test/test_testplugin.py')
-rw-r--r-- | test/test_testplugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_testplugin.py b/test/test_testplugin.py index 87e2e4bc..98459f53 100644 --- a/test/test_testplugin.py +++ b/test/test_testplugin.py @@ -1,7 +1,7 @@ import py import unittest from nose.plugins import PluginTester -from coverage.noseplugin import Coverage +from coverage.runners.noseplugin import Coverage class TestCoverage(PluginTester, unittest.TestCase): activate = '--with-coverage' # enables the plugin |