示例#1
0
 def hook(self, entry):
     return _bootstrap._file_path_hook(entry)
示例#2
0
 def hook(self, entry):
     return _bootstrap._file_path_hook(entry)
示例#3
0
 def test_success(self):
     with source_util.create_modules('dummy') as mapping:
         self.assertTrue(
             hasattr(_bootstrap._file_path_hook(mapping['.root']),
                     'find_module'))
示例#4
0
 def test_empty_string(self):
     # The empty string represents the cwd.
     self.assertTrue(hasattr(_bootstrap._file_path_hook(''), 'find_module'))
示例#5
0
 def test_success(self):
     with source_util.create_modules('dummy') as mapping:
         self.assertTrue(hasattr(_bootstrap._file_path_hook(mapping['.root']),
                              'find_module'))
示例#6
0
 def test_empty_string(self):
     # The empty string represents the cwd.
     self.assertTrue(hasattr(_bootstrap._file_path_hook(''), 'find_module'))