def test_compute_search_path_dir( calling_file: str, calling_module: str, config_path: str, expected: str ) -> None: res = compute_search_path_dir(calling_file, calling_module, config_path) assert res == expected
def test_compute_search_path_dir(calling_file, calling_module, config_dir, expected): res = compute_search_path_dir(calling_file, calling_module, config_dir) assert res == expected