generated from Luis/nextjs-python-web-template
23 lines
609 B
Python
23 lines
609 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from clan_cli.dirs import get_clan_flake_toplevel
|
|
from clan_cli.errors import ClanError
|
|
|
|
|
|
def test_get_clan_flake_toplevel(
|
|
monkeypatch: pytest.MonkeyPatch, temporary_dir: Path
|
|
) -> None:
|
|
monkeypatch.chdir(temporary_dir)
|
|
with pytest.raises(ClanError):
|
|
print(get_clan_flake_toplevel())
|
|
(temporary_dir / ".git").touch()
|
|
assert get_clan_flake_toplevel() == temporary_dir
|
|
|
|
subdir = temporary_dir / "subdir"
|
|
subdir.mkdir()
|
|
monkeypatch.chdir(subdir)
|
|
(subdir / ".clan-flake").touch()
|
|
assert get_clan_flake_toplevel() == subdir
|