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 | a35f7161de5eb0e9c40adc026a0d40e6bd1296af (patch) | |
| tree | d4b5cd50bbb649ca51bea50488053fae0505ebc6 /tests/test_testing.py | |
| parent | f8892d89e12ff0678b1256ef3863103f11a0e34f (diff) | |
| download | python-coveragepy-a35f7161de5eb0e9c40adc026a0d40e6bd1296af.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 10370e5..75db7e5 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 |
