(self)
| 111 | arguments=[URL]) |
| 112 | |
| 113 | def test_open_bad_new_parameter(self): |
| 114 | with self.assertRaisesRegex(webbrowser.Error, |
| 115 | re.escape("Bad 'new' parameter to open(); " |
| 116 | "expected 0, 1, or 2, got 999")): |
| 117 | self._test('open', |
| 118 | options=[], |
| 119 | arguments=[URL], |
| 120 | kw=dict(new=999)) |
| 121 | |
| 122 | |
| 123 | class EdgeCommandTest(CommandTestMixin, unittest.TestCase): |
nothing calls this directly
no test coverage detected