Test create_app without passing test config.
()
| 2 | |
| 3 | |
| 4 | def test_config(): |
| 5 | """Test create_app without passing test config.""" |
| 6 | assert not create_app().testing |
| 7 | assert create_app({"TESTING": True}).testing |
| 8 | |
| 9 | |
| 10 | def test_hello(client): |
nothing calls this directly
no test coverage detected