forked from lix-project/lix
jade
3caf3e1e08
I am tired of bad shell scripts, let me write bad python quickly
instead. It's definitely, $100%, better.
This is not planned as an immediate replacement of the old test suite,
but we::jade would not oppose tests getting ported.
What is here is a mere starting point and there is a lot more
functionality that we need.
Fixes: lix-project/lix#488
Change-Id: If762efce69030bb667491b263b874c36024bf7b6
9 lines
146 B
Python
9 lines
146 B
Python
import pytest
|
|
from pathlib import Path
|
|
from .testlib import fixtures
|
|
|
|
|
|
@pytest.fixture
|
|
def nix(tmp_path: Path):
|
|
return fixtures.Nix(tmp_path)
|