def test_head(self): ''' Test for return the metadata for a bucket, or an object in a bucket. ''' with patch.object(s3, '_get_key', return_value=('key', 'keyid', 'service_url', 'verify_ssl', 'kms_keyid', 'location', 'role_arn')): self.assertEqual(s3.head('bucket'), 'A')
def test_head(self): ''' Test for return the metadata for a bucket, or an object in a bucket. ''' with patch.object(s3, '_get_key', return_value=('key', 'keyid', 'service_url', 'verify_ssl', 'kms_keyid', 'location', 'role_arn', 'path_style', 'https_enable')): self.assertEqual(s3.head('bucket'), 'A')
def test_head(self): """ Test for return the metadata for a bucket, or an object in a bucket. """ with patch.object( s3, "_get_key", return_value=( "key", "keyid", "service_url", "verify_ssl", "kms_keyid", "location", "role_arn", "path_style", "https_enable", ), ): self.assertEqual(s3.head("bucket"), "A")