mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from importlib import _bootstrap
 | 
						|
from . import util as source_util
 | 
						|
import unittest
 | 
						|
 | 
						|
 | 
						|
class PathHookTest(unittest.TestCase):
 | 
						|
 | 
						|
    """Test the path hook for source."""
 | 
						|
 | 
						|
    def test_success(self):
 | 
						|
        # XXX Only work on existing directories?
 | 
						|
        with source_util.create_modules('dummy') as mapping:
 | 
						|
            self.assert_(hasattr(_bootstrap._FileFinder(mapping['.root']),
 | 
						|
                                 'find_module'))
 | 
						|
 | 
						|
 | 
						|
def test_main():
 | 
						|
    from test.support import run_unittest
 | 
						|
    run_unittest(PathHookTest)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    test_main()
 |