예제 #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'))