generated from Luis/nextjs-python-web-template
write test for get_clan_flake_toplevel
This commit is contained in:
11
pkgs/clan-cli/tests/temporary_dir.py
Normal file
11
pkgs/clan-cli/tests/temporary_dir.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import tempfile
|
||||
from pathlib import Path
|
||||
from typing import Iterator
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def temporary_dir() -> Iterator[Path]:
|
||||
with tempfile.TemporaryDirectory(prefix="pytest-") as dirpath:
|
||||
yield Path(dirpath)
|
||||
Reference in New Issue
Block a user