Conditions | 1 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import os |
||
15 | def setUp(self): |
||
16 | self.app = create_app(config_name="testing") |
||
17 | self.client = self.app.test_client |
||
18 | self.reg = { "username": "[email protected]", "password": "test", "firstname": "susan", |
||
19 | "lastname": "Wekesa" } |
||
20 | self.login = {"username":"[email protected]","password":"test"} |
||
21 | |||
51 |