HomeSort by relevance Sort by last modified time
    Searched refs:mock_stdout (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Lib/test/
test_zipapp.py 382 def test_info_command(self, mock_stdout):
390 self.assertEqual(mock_stdout.getvalue(), "Interpreter: <none>\n")
  /external/scapy/scapy/
utils.py 467 mock_stdout = mock.Mock()
468 mock_stdout.write = write
470 sys.stdout = mock_stdout
    [all...]
  /external/tensorflow/tensorflow/python/keras/engine/
training_test.py 765 mock_stdout = io.BytesIO() if six.PY2 else io.StringIO()
772 with test.mock.patch.object(sys, 'stdout', mock_stdout):
775 self.assertTrue('Epoch 5/10' in mock_stdout.getvalue())
    [all...]

Completed in 459 milliseconds