File: test_finder.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 (47 lines) | stat: -rw-r--r-- 1,237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from importlib import _bootstrap
from .. import abc
from . import util

import unittest

class FinderTests(abc.FinderTests):

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

    def find_module(self, fullname):
        importer = _bootstrap._FileFinder(util.PATH,
                                          _bootstrap._ExtensionFinderDetails())
        return importer.find_module(fullname)

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

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

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

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

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

    def test_failure(self):
        self.assertTrue(self.find_module('asdfjkl;') is None)

    # XXX Raise an exception if someone tries to use the 'path' argument?


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


if __name__ == '__main__':
    test_main()