mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-16 03:20:58 +00:00
17 lines
255 B
Python
17 lines
255 B
Python
import os
|
|
import tempfile
|
|
|
|
import pytest
|
|
from click.testing import CliRunner
|
|
|
|
|
|
@pytest.fixture
|
|
def runner():
|
|
yield CliRunner()
|
|
|
|
|
|
@pytest.fixture
|
|
def tmp_file():
|
|
tmp = tempfile.NamedTemporaryFile(delete=False)
|
|
yield tmp
|
|
os.unlink(tmp.name)
|