Staging
v0.5.2
https://github.com/python/cpython
Raw File
Tip revision: 9e2043a5613a6423b7051b08a916b01969c179ed authored by Georg Brandl on 17 November 2013, 06:58:22 UTC
Bump to 3.3.3 final.
Tip revision: 9e2043a
test_finder.py
from importlib import machinery
from .. import abc
from . import util

import unittest

class FinderTests(abc.FinderTests):

    """Test the finder for extension modules."""

    def find_module(self, fullname):
        importer = machinery.FileFinder(util.PATH,
                                        (machinery.ExtensionFileLoader,
                                         machinery.EXTENSION_SUFFIXES))
        return importer.find_module(fullname)

    def test_module(self):
        self.assertTrue(self.find_module(util.NAME))

    def test_package(self):
        # No extension module as an __init__ available for testing.
        pass

    def test_module_in_package(self):
        # No extension module in a package available for testing.
        pass

    def test_package_in_package(self):
        # No extension module as an __init__ available for testing.
        pass

    def test_package_over_module(self):
        # Extension modules cannot be an __init__ for a package.
        pass

    def test_failure(self):
        self.assertIsNone(self.find_module('asdfjkl;'))


def test_main():
    from test.support import run_unittest
    run_unittest(FinderTests)


if __name__ == '__main__':
    test_main()
back to top