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 | 1866c821c1d9f1ec823811815d813f9821f5bf47 (patch) | |
| tree | 951e886cd3140d46c463cd9cec4d0bb370c5d30b /tests/plugin1.py | |
| parent | e7d0f66fb5f7eebe647f8b16670cb0fbde6b2c1f (diff) | |
| download | python-coveragepy-1866c821c1d9f1ec823811815d813f9821f5bf47.tar.gz | |
There will be other kinds of plugins
Diffstat (limited to 'tests/plugin1.py')
| -rw-r--r-- | tests/plugin1.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugin1.py b/tests/plugin1.py index 4276995..e03dadf 100644 --- a/tests/plugin1.py +++ b/tests/plugin1.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 to import, so that it isn't in the test's current directory.""" + """A file tracer plugin to import, so that it isn't in the test's current directory.""" def file_tracer(self, filename): """Trace only files named xyz.py""" |
