(self)
| 101 | self.assertTrue(parse_args(["site", "-c"]).clipboard) |
| 102 | |
| 103 | def test_parse_args_prompt_long(self): |
| 104 | self.assertTrue(parse_args(["--prompt"]).prompt) |
| 105 | |
| 106 | def test_parse_args_prompt_short(self): |
| 107 | self.assertTrue(parse_args(["-p"]).prompt) |
nothing calls this directly
no test coverage detected