(self)
| 222 | self.assertIn('not exist', dialog.path_error['text']) |
| 223 | |
| 224 | def test_path_ok_web(self): |
| 225 | dialog = self.Dummy_HelpSource('') |
| 226 | Equal = self.assertEqual |
| 227 | for url in 'www.py.org', 'http://py.org': |
| 228 | with self.subTest(): |
| 229 | dialog.path.set(url) |
| 230 | self.assertEqual(dialog.path_ok(), url) |
| 231 | self.assertEqual(dialog.path_error['text'], '') |
| 232 | |
| 233 | def test_path_ok_file(self): |
| 234 | dialog = self.Dummy_HelpSource('') |
nothing calls this directly
no test coverage detected