jarus / flask-testing

Unittest extensions for Flask
http://pythonhosted.org/Flask-Testing/
Other
502 stars 111 forks source link

Print template names rather than objects #128

Open davewsmith opened 5 years ago

davewsmith commented 5 years ago

Resolve issue #127

Show template.name rather than repr(template), and don't mangle the result. For the example in the issue, this produces

AssertionError: Template ndex.html not used. Templates used: ['index.html']

Jinja2 templates don't have names if they're created from strings, but this is a case where assertTemplateUsed() isn't appropriate.