(self, acfactory)
| 62 | assert ac1.get_config("bcc_self") == "1" |
| 63 | |
| 64 | def test_update_config(self, acfactory): |
| 65 | ac1 = acfactory.get_unconfigured_account() |
| 66 | ac1.update_config({"bcc_self": True}) |
| 67 | assert ac1.get_config("bcc_self") == "1" |
| 68 | |
| 69 | def test_has_bccself(self, acfactory): |
| 70 | ac1 = acfactory.get_unconfigured_account() |
nothing calls this directly
no test coverage detected