File: __init__.py

package info (click to toggle)
python3.2 3.2.3-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 62,476 kB
  • sloc: python: 344,518; ansic: 315,782; sh: 11,910; asm: 10,846; makefile: 3,564; objc: 775; cpp: 432; exp: 416; xml: 73
file content (13 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
import importlib.test
import os.path
import unittest


def test_suite():
    directory = os.path.dirname(__file__)
    return importlib.test.test_suite('importlib.test.import_', directory)


if __name__ == '__main__':
    from test.support import run_unittest
    run_unittest(test_suite())