MCPcopy Index your code
hub / github.com/python/cpython / test_envar_good_path_builtin

Method test_envar_good_path_builtin

Lib/test/test_builtin.py:2553–2557  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

patchFunction · 0.90

Tested by

no test coverage detected