(self)
| 2565 | |
| 2566 | @unittest.skipIf(sys.flags.ignore_environment, '-E was given') |
| 2567 | def test_envar_good_path_noop_0(self): |
| 2568 | self.env['PYTHONBREAKPOINT'] = '0' |
| 2569 | with patch('pdb.set_trace') as mock: |
| 2570 | breakpoint() |
| 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. |
nothing calls this directly
no test coverage detected