| Conditions | 4 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | #! ../env/bin/python |
||
| 7 | def test_dev_config(self): |
||
| 8 | """ Tests if the development config loads correctly """ |
||
| 9 | |||
| 10 | app = create_app('sugarloaf.settings.DevConfig') |
||
| 11 | |||
| 12 | assert app.config['DEBUG'] is True |
||
| 13 | assert 'postgresql' in app.config['SQLALCHEMY_DATABASE_URI'] |
||
| 14 | assert app.config['CACHE_TYPE'] == 'null' |
||
| 15 | |||
| 32 |