2009-08-30 05:39:57 -03:00
|
|
|
"""Run importlib's test suite.
|
|
|
|
|
|
|
|
Specifying the ``--builtin`` flag will run tests, where applicable, with
|
|
|
|
builtins.__import__ instead of importlib.__import__.
|
|
|
|
|
|
|
|
"""
|
2009-07-15 01:08:33 -03:00
|
|
|
if __name__ == '__main__':
|
2013-11-08 14:35:34 -04:00
|
|
|
from . import test_main
|
2009-07-15 01:08:33 -03:00
|
|
|
test_main()
|