Searched refs:mock_popen (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Lib/test/
H A Dtest_script_helper.py38 def test_assert_python_isolated_when_env_not_required(self, mock_popen):
42 mock_popen.side_effect = RuntimeError('bail out of unittest')
47 self.assertEqual(1, mock_popen.call_count)
49 popen_command = mock_popen.call_args[0][0]
56 def test_assert_python_not_isolated_when_env_is_required(self, mock_popen):
61 mock_popen.side_effect = RuntimeError('bail out of unittest')
66 popen_command = mock_popen.call_args[0][0]
/external/python/cpython2/Lib/test/
H A Dtest_uuid.py409 def mock_popen(cmd): function in function:.test_find_mac
423 with test_support.swap_attr(os, 'popen', mock_popen):

Completed in 180 milliseconds