MCPcopy Create free account
hub / github.com/aws/aws-cli / test_aws_with_read_timeout

Method test_aws_with_read_timeout

tests/unit/test_clidriver.py:935–941  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

933 self.assertEqual(call_args[1]['verify'], '/path/cacert.pem')
934
935 def test_aws_with_read_timeout(self):
936 self.assert_params_for_cmd(
937 'lambda invoke --function-name foo out.log --cli-read-timeout 90',
938 expected_rc=0,
939 )
940 call_args = self.create_endpoint.call_args
941 self.assertEqual(call_args[1]['timeout'][1], 90)
942
943 def test_aws_with_blocking_read_timeout(self):
944 self.assert_params_for_cmd(

Callers

nothing calls this directly

Calls 1

assert_params_for_cmdMethod · 0.80

Tested by

no test coverage detected