(self)
| 2551 | |
| 2552 | @unittest.skipIf(sys.flags.ignore_environment, '-E was given') |
| 2553 | def test_envar_good_path_builtin(self): |
| 2554 | self.env['PYTHONBREAKPOINT'] = 'int' |
| 2555 | with patch('builtins.int') as mock: |
| 2556 | breakpoint('7') |
| 2557 | mock.assert_called_once_with('7') |
| 2558 | |
| 2559 | @unittest.skipIf(sys.flags.ignore_environment, '-E was given') |
| 2560 | def test_envar_good_path_other(self): |
nothing calls this directly
no test coverage detected