unit test templater
This commit is contained in:
parent
b72d495cec
commit
8b38769cfc
2 changed files with 34 additions and 1 deletions
20
tests/test_templater.py
Normal file
20
tests/test_templater.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: UTF-8 -*-
|
||||
|
||||
import os
|
||||
import pytest
|
||||
|
||||
from stacosys.core.templater import Templater, TEMPLATE_APPROVE_COMMENT
|
||||
|
||||
@pytest.fixture
|
||||
def templater_fr():
|
||||
current_path = os.path.dirname(__file__)
|
||||
template_path = os.path.abspath(os.path.join(current_path, "../stacosys/templates"))
|
||||
return Templater("fr", template_path)
|
||||
|
||||
def test_approve_comment_fr(templater_fr):
|
||||
template = templater_fr.get_template(TEMPLATE_APPROVE_COMMENT)
|
||||
assert template
|
||||
content = template.render(original="texte original")
|
||||
assert content.startswith("Bonjour,\n\nLe commentaire sera bientôt publié.")
|
||||
assert content.endswith("texte original")
|
||||
Loading…
Add table
Add a link
Reference in a new issue