From 5c88838a8cfb53dac3d63b272ea137f7a4f09f87 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 21 Aug 2014 11:20:17 -0400 Subject: Forgotten files --- tests/modules/plugins/another.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/modules/plugins/another.py (limited to 'tests/modules/plugins/another.py') 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 -- cgit v1.2.1 From da16957f1b15a3b4b960a11f7d6d36448630c978 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 22 Aug 2014 21:30:53 -0400 Subject: Make CoveragePlugin importable from coverage --- tests/modules/plugins/another.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/modules/plugins/another.py') diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py index 93ac4854..2ff84dac 100644 --- a/tests/modules/plugins/another.py +++ b/tests/modules/plugins/another.py @@ -1,6 +1,6 @@ """A plugin for tests to reference.""" -from coverage.plugin import CoveragePlugin +from coverage import CoveragePlugin class Plugin(CoveragePlugin): pass -- cgit v1.2.1