(self, acfactory)
| 1280 | |
| 1281 | class TestOnlineConfigureFails: |
| 1282 | def test_invalid_password(self, acfactory): |
| 1283 | configdict = acfactory.get_next_liveconfig() |
| 1284 | ac1 = acfactory.get_unconfigured_account() |
| 1285 | ac1.update_config({"addr": configdict["addr"], "mail_pw": "123"}) |
| 1286 | configtracker = ac1.configure() |
| 1287 | configtracker.wait_progress(500) |
| 1288 | configtracker.wait_progress(0) |
| 1289 | |
| 1290 | def test_invalid_user(self, acfactory): |
| 1291 | configdict = acfactory.get_next_liveconfig() |
nothing calls this directly
no test coverage detected