(self)
| 2571 | mock.assert_not_called() |
| 2572 | |
| 2573 | def test_envar_good_path_empty_string(self): |
| 2574 | # PYTHONBREAKPOINT='' is the same as it not being set. |
| 2575 | self.env['PYTHONBREAKPOINT'] = '' |
| 2576 | with patch('pdb.set_trace') as mock: |
| 2577 | breakpoint() |
| 2578 | mock.assert_called_once_with() |
| 2579 | |
| 2580 | @unittest.skipIf(sys.flags.ignore_environment, '-E was given') |
| 2581 | def test_envar_unimportable(self): |
nothing calls this directly
no test coverage detected