Python code coverage for Lib/importlib/test/source/__init__.py
| # | count | content |
|---|---|---|
| 1 | n/a | import importlib.test |
| 2 | n/a | import os.path |
| 3 | n/a | import unittest |
| 4 | n/a | |
| 5 | n/a | |
| 6 | n/a | def test_suite(): |
| 7 | n/a | directory = os.path.dirname(__file__) |
| 8 | n/a | return importlib.test.test_suite('importlib.test.source', directory) |
| 9 | n/a | |
| 10 | n/a | |
| 11 | n/a | if __name__ == '__main__': |
| 12 | n/a | from test.support import run_unittest |
| 13 | n/a | run_unittest(test_suite()) |
