diff options
Diffstat (limited to 'tests/modules/plugins/another.py')
-rw-r--r-- | tests/modules/plugins/another.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py new file mode 100644 index 00000000..93ac4854 --- /dev/null +++ b/tests/modules/plugins/another.py @@ -0,0 +1,6 @@ +"""A plugin for tests to reference.""" + +from coverage.plugin import CoveragePlugin + +class Plugin(CoveragePlugin): + pass |