(test_apps)
| 245 | |
| 246 | |
| 247 | def test_templates_list(test_apps): |
| 248 | from blueprintapp import app |
| 249 | |
| 250 | templates = sorted(app.jinja_env.list_templates()) |
| 251 | assert templates == ["admin/index.html", "frontend/index.html"] |
| 252 | |
| 253 | |
| 254 | def test_dotted_name_not_allowed(app, client): |
nothing calls this directly
no test coverage detected