summaryrefslogtreecommitdiff
path: root/tests/test_plugins.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-12-26 22:56:57 -0500
committerNed Batchelder <ned@nedbatchelder.com>2017-12-26 22:56:57 -0500
commitef4e10733ccaae905b7a8fdb0b69001f52fdcc8b (patch)
treecaab0d7ee3d54ee34c9fcc9915561bcac79885e4 /tests/test_plugins.py
parentd8950b6509f5a09cdd2ac4581643d7bac6b3841b (diff)
downloadpython-coveragepy-git-ef4e10733ccaae905b7a8fdb0b69001f52fdcc8b.tar.gz
There will be other kinds of plugins
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r--tests/test_plugins.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py
index 5486216a..4dfe0bde 100644
--- a/tests/test_plugins.py
+++ b/tests/test_plugins.py
@@ -271,8 +271,8 @@ class FileTracerTest(CoverageTest):
self.skipTest("Plugins are only supported with the C tracer.")
-class GoodPluginTest(FileTracerTest):
- """Tests of plugin happy paths."""
+class GoodFileTracerTest(FileTracerTest):
+ """Tests of file tracer plugin happy paths."""
def test_plugin1(self):
self.make_file("simple.py", """\
@@ -558,8 +558,8 @@ class GoodPluginTest(FileTracerTest):
cov.analysis("fictional.py")
-class BadPluginTest(FileTracerTest):
- """Test error handling around plugins."""
+class BadFileTracerTest(FileTracerTest):
+ """Test error handling around file tracer plugins."""
def run_plugin(self, module_name):
"""Run a plugin with the given module_name.