(self)
| 17 | self.assertEqual(parse_args([]).master_password, "password") |
| 18 | |
| 19 | def test_parse_args_master_password(self): |
| 20 | self.assertEqual( |
| 21 | parse_args(["site", "login", "masterpassword"]).master_password, |
| 22 | "masterpassword", |
| 23 | ) |
| 24 | |
| 25 | def test_parse_args_l(self): |
| 26 | self.assertTrue(parse_args(["site", "-l"]).l) |
nothing calls this directly
no test coverage detected