mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-30 12:10:25 +00:00
15 lines
220 B
Python
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
|