summaryrefslogtreecommitdiff
path: root/tests/test_debug.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-01-24 09:24:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-01-24 09:24:36 -0500
commit70818633d97eabd24bfde567a61a684f044ed54d (patch)
treef3797e523f6dd36032c5a39240adc5e8ea4a8782 /tests/test_debug.py
parentd11501498ec4651a45f674cb2c35f36fd93f9eb5 (diff)
downloadpython-coveragepy-70818633d97eabd24bfde567a61a684f044ed54d.tar.gz
info_formatter shouldn't assume it gets a list
Diffstat (limited to 'tests/test_debug.py')
-rw-r--r--tests/test_debug.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_debug.py b/tests/test_debug.py
index 33bca44..8aad925 100644
--- a/tests/test_debug.py
+++ b/tests/test_debug.py
@@ -31,6 +31,10 @@ class InfoFormatterTest(CoverageTest):
' nothing: -none-',
])
+ def test_info_formatter_with_generator(self):
+ lines = list(info_formatter(('info%d' % i, i) for i in range(3)))
+ self.assertEqual(lines, ['info0: 0', 'info1: 1', 'info2: 2'])
+
class DebugTraceTest(CoverageTest):
"""Tests of debug output."""