(self)
| 81 | self.assertEqual(struct.show_source_key, "F9") |
| 82 | |
| 83 | def test_keybindings_unset(self): |
| 84 | struct = self.load_temp_config( |
| 85 | textwrap.dedent( |
| 86 | """ |
| 87 | [keyboard] |
| 88 | help = |
| 89 | """ |
| 90 | ) |
| 91 | ) |
| 92 | |
| 93 | self.assertFalse(struct.help_key) |
| 94 | |
| 95 | def test_keybindings_unused(self): |
| 96 | struct = self.load_temp_config( |
nothing calls this directly
no test coverage detected