From 1279923a1d4e6c0844656bc6aaa75a496f070536 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 10 Aug 2015 07:35:50 -0400 Subject: Add docstring for source_token_lines --- tests/modules/plugins/a_plugin.py | 2 ++ tests/modules/plugins/another.py | 2 ++ 2 files changed, 4 insertions(+) (limited to 'tests/modules/plugins') diff --git a/tests/modules/plugins/a_plugin.py b/tests/modules/plugins/a_plugin.py index 2a9910d..0cc96e5 100644 --- a/tests/modules/plugins/a_plugin.py +++ b/tests/modules/plugins/a_plugin.py @@ -2,8 +2,10 @@ from coverage import CoveragePlugin + class Plugin(CoveragePlugin): pass + def coverage_init(reg, options): reg.add_file_tracer(Plugin()) diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py index 096d3b9..80902d3 100644 --- a/tests/modules/plugins/another.py +++ b/tests/modules/plugins/another.py @@ -5,8 +5,10 @@ from coverage import CoveragePlugin + class Plugin(CoveragePlugin): pass + def coverage_init(reg, options): reg.add_file_tracer(Plugin()) -- cgit v1.2.1