(self)
| 93 | self.assertFalse(struct.help_key) |
| 94 | |
| 95 | def test_keybindings_unused(self): |
| 96 | struct = self.load_temp_config( |
| 97 | textwrap.dedent( |
| 98 | """ |
| 99 | [keyboard] |
| 100 | help = F4 |
| 101 | """ |
| 102 | ) |
| 103 | ) |
| 104 | |
| 105 | self.assertEqual(struct.help_key, "F4") |
nothing calls this directly
no test coverage detected