Skip to content

Commit

Permalink
adds creation of templates/unicorn to ignore starring message
Browse files Browse the repository at this point in the history
  • Loading branch information
felipmartins authored and adamghill committed Feb 25, 2024
1 parent 584f2bb commit e5f41a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/management/commands/startunicorn/test_handle.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def test_handle_existing_component(settings, tmp_path, monkeypatch, capsys):

(tmp_path / app_name).mkdir()
(tmp_path / app_name / "components").mkdir()
(tmp_path / app_name / "templates" / "unicorn").mkdir(parents=True)

component_names = [
"hello-world",
Expand All @@ -111,7 +112,7 @@ def test_handle_existing_templates(settings, tmp_path, monkeypatch, capsys):

(tmp_path / app_name).mkdir()
(tmp_path / app_name / "components").mkdir()
(tmp_path / app_name / "templates").mkdir()
(tmp_path / app_name / "templates" / "unicorn").mkdir(parents=True)

component_names = [
"hello-world",
Expand Down

0 comments on commit e5f41a4

Please sign in to comment.