(self)
| 231 | self.assertEqual(dialog.path_error['text'], '') |
| 232 | |
| 233 | def test_path_ok_file(self): |
| 234 | dialog = self.Dummy_HelpSource('') |
| 235 | for platform, prefix in ('darwin', 'file://'), ('other', ''): |
| 236 | with self.subTest(): |
| 237 | query.platform = platform |
| 238 | dialog.path.set(__file__) |
| 239 | self.assertEqual(dialog.path_ok(), prefix + __file__) |
| 240 | self.assertEqual(dialog.path_error['text'], '') |
| 241 | |
| 242 | |
| 243 | class HelpsourceEntryokTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected