summaryrefslogtreecommitdiff
path: root/tests/modules/plugins
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-08-21 11:20:17 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-08-21 11:20:17 -0400
commiteeaa32333bc31eff4e890870b9cdcb66948740a2 (patch)
tree9b6ff5d1f6f6c2e9fe654d3fe5e482b0a9fca3d3 /tests/modules/plugins
parent6c6b73902539473740b515cea1481a924e552a66 (diff)
downloadpython-coveragepy-eeaa32333bc31eff4e890870b9cdcb66948740a2.tar.gz
Forgotten files
Diffstat (limited to 'tests/modules/plugins')
-rw-r--r--tests/modules/plugins/__init__.py0
-rw-r--r--tests/modules/plugins/a_plugin.py6
-rw-r--r--tests/modules/plugins/another.py6
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/modules/plugins/__init__.py b/tests/modules/plugins/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/modules/plugins/__init__.py
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