-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: rendering directories with jinja
- Loading branch information
Showing
5 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from pathlib import Path | ||
|
||
TEMPLATE_DIR = Path(__file__).parent.parent / "src" / "litestar_manage" / "template" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import pytest | ||
from testfixtures import TempDirectory | ||
|
||
from litestar_manage.renderer import RenderingContext, _render_jinja_dir | ||
from tests import TEMPLATE_DIR | ||
|
||
|
||
@pytest.fixture | ||
def rendering_context() -> RenderingContext: | ||
return RenderingContext(app_name="TestApp") | ||
|
||
|
||
def test_render_jinja_dir(rendering_context: RenderingContext) -> None: | ||
with TempDirectory() as t: | ||
temp_path = t.as_path() | ||
_render_jinja_dir(TEMPLATE_DIR, temp_path, rendering_context) | ||
|
||
assert (temp_path / "app").exists() | ||
assert (temp_path / "app" / "app.py").exists() |