mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
6301fcc603
* Update black from 23.12.1 to 24.1.0 * Update black from 23.12.1 to 24.1.0 * Update black pre-commit hooks * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix a few styling issues for black v24 --------- Co-authored-by: Bruno Alla <alla.brunoo@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
28 lines
710 B
Python
28 lines
710 B
Python
"""Unit tests for the hooks"""
|
|
|
|
import os
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from hooks.post_gen_project import append_to_gitignore_file
|
|
|
|
|
|
@pytest.fixture()
|
|
def working_directory(tmp_path):
|
|
prev_cwd = Path.cwd()
|
|
os.chdir(tmp_path)
|
|
try:
|
|
yield tmp_path
|
|
finally:
|
|
os.chdir(prev_cwd)
|
|
|
|
|
|
def test_append_to_gitignore_file(working_directory):
|
|
gitignore_file = working_directory / ".gitignore"
|
|
gitignore_file.write_text("node_modules/\n")
|
|
append_to_gitignore_file(".envs/*")
|
|
linesep = os.linesep.encode()
|
|
assert gitignore_file.read_bytes() == b"node_modules/" + linesep + b".envs/*" + linesep
|
|
assert gitignore_file.read_text() == "node_modules/\n.envs/*\n"
|