| Conditions | 4 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | #! ../env/bin/python |
||
| 16 | def test_test_config(self): |
||
| 17 | """ Tests if the test config loads correctly """ |
||
| 18 | |||
| 19 | app = create_app('sugarloaf.settings.TestConfig') |
||
| 20 | |||
| 21 | assert app.config['DEBUG'] is True |
||
| 22 | assert app.config['SQLALCHEMY_ECHO'] is True |
||
| 23 | assert app.config['CACHE_TYPE'] == 'null' |
||
| 24 | |||
| 32 |