summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-coverage/coverage_not_ignored.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roots/test-ext-coverage/coverage_not_ignored.py')
-rw-r--r--tests/roots/test-ext-coverage/coverage_not_ignored.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/roots/test-ext-coverage/coverage_not_ignored.py b/tests/roots/test-ext-coverage/coverage_not_ignored.py
new file mode 100644
index 0000000..b762955
--- /dev/null
+++ b/tests/roots/test-ext-coverage/coverage_not_ignored.py
@@ -0,0 +1,22 @@
+class Documented:
+ """Documented"""
+
+ def ignored1(self):
+ pass
+
+ def ignored2(self):
+ pass
+
+ def not_ignored1(self):
+ pass
+
+ def not_ignored2(self):
+ pass
+
+
+class Ignored:
+ pass
+
+
+class NotIgnored:
+ pass