def hook(self, entry): return _bootstrap._file_path_hook(entry)
def test_success(self): with source_util.create_modules('dummy') as mapping: self.assertTrue( hasattr(_bootstrap._file_path_hook(mapping['.root']), 'find_module'))
def test_empty_string(self): # The empty string represents the cwd. self.assertTrue(hasattr(_bootstrap._file_path_hook(''), 'find_module'))
def test_success(self): with source_util.create_modules('dummy') as mapping: self.assertTrue(hasattr(_bootstrap._file_path_hook(mapping['.root']), 'find_module'))