From eeaa32333bc31eff4e890870b9cdcb66948740a2 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/__init__.py | 0 tests/modules/plugins/a_plugin.py | 6 ++++++ tests/modules/plugins/another.py | 6 ++++++ 3 files changed, 12 insertions(+) create mode 100644 tests/modules/plugins/__init__.py create mode 100644 tests/modules/plugins/a_plugin.py create mode 100644 tests/modules/plugins/another.py (limited to 'tests/modules/plugins') diff --git a/tests/modules/plugins/__init__.py b/tests/modules/plugins/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/modules/plugins/a_plugin.py b/tests/modules/plugins/a_plugin.py new file mode 100644 index 0000000..93ac485 --- /dev/null +++ b/tests/modules/plugins/a_plugin.py @@ -0,0 +1,6 @@ +"""A plugin for tests to reference.""" + +from coverage.plugin import CoveragePlugin + +class Plugin(CoveragePlugin): + pass diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py new file mode 100644 index 0000000..93ac485 --- /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