Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用客户端和加密客户端存根对 get_object 的调用?目标是使用以下客户端为 get_object 编写 rspec 测试。有没有人可以分享一个“get_object”工作示例?我知道各种描述 aws-sdk-ruby 存根的网页,但一直无法正常工作。
Aws::S3::Client.new Aws::S3::Encryption::Client.new
参考这篇博文,您可以使用
# stub everything Aws.config[:stub_responses] = true
这应该防止所有http调用。