Exemplo n.º 1
0
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
Exemplo n.º 2
0
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