diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-22 23:31:41 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-22 23:31:41 -0500 |
commit | f8aeaee83f1591b3bc524f8880c858f18da4a2fd (patch) | |
tree | 8b1c7a53387c9a0936ab6a4b6ccfb8ab300f9915 /tests/test_testing.py | |
parent | 91e36892778bc327cffe91da2cce4784a5ea102c (diff) | |
download | python-coveragepy-git-f8aeaee83f1591b3bc524f8880c858f18da4a2fd.tar.gz |
Clarify how to use make_file for non-ascii content.
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r-- | tests/test_testing.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_testing.py b/tests/test_testing.py index 10370e54..75db7e50 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -1,9 +1,12 @@ # -*- coding: utf-8 -*- """Tests that our test infrastructure is really working!""" -import os, sys +import os +import sys + from coverage.backunittest import TestCase from coverage.backward import to_bytes + from tests.coveragetest import TempDirMixin, CoverageTest |