djLint/tests/conftest.py
Christopher Pickering eef8fdb63b
added tests
2021-07-13 10:45:57 -05:00

15 lines
220 B
Python

import tempfile
import pytest
from click.testing import CliRunner
@pytest.fixture
def runner():
yield CliRunner()
@pytest.fixture
def tmp_file():
with tempfile.NamedTemporaryFile() as tmp:
yield tmp