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

Method test_envar_good_path_empty_string

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

patchFunction · 0.90

Tested by

no test coverage detected