diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-12-26 22:56:57 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-12-26 22:56:57 -0500 |
commit | ef4e10733ccaae905b7a8fdb0b69001f52fdcc8b (patch) | |
tree | caab0d7ee3d54ee34c9fcc9915561bcac79885e4 /tests/plugin2.py | |
parent | d8950b6509f5a09cdd2ac4581643d7bac6b3841b (diff) | |
download | python-coveragepy-git-ef4e10733ccaae905b7a8fdb0b69001f52fdcc8b.tar.gz |
There will be other kinds of plugins
Diffstat (limited to 'tests/plugin2.py')
-rw-r--r-- | tests/plugin2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugin2.py b/tests/plugin2.py index 9651ce63..c1ab1c23 100644 --- a/tests/plugin2.py +++ b/tests/plugin2.py @@ -1,7 +1,7 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt -"""A plugin for test_plugins.py to import.""" +"""A file tracer plugin for test_plugins.py to import.""" import os.path @@ -9,7 +9,7 @@ import coverage class Plugin(coverage.CoveragePlugin): - """A plugin for testing.""" + """A file tracer plugin for testing.""" def file_tracer(self, filename): if "render.py" in filename: return RenderFileTracer() |