Rspec 通过 mTurk 测试实时结果
我正在通过 Rspec 测试代码在 mTurk 上创建点击,但同时我需要测试必须从 mTurk 发回的结果。为了节省每次测试的复杂性,我使用 VCR 将 HTTP 请求记录在盒式磁带中。我该如何实施这个测试?
I am creating hits at mTurk through Rspec test code but at the same time i need to test the results which must be send back from mTurk. In order to save complexity testing for every test i'm using VCR to record the HTTP Requests in a cassette. How can i implement this test??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我为此做了一些修改,我使用调试器来保存我的 rspec 测试,直到结果从 mTurk 返回,然后将其存储在 VCR 中。所以我必须做一次这样的黑客,然后VCR对我有用
well i did some hack for that, i used debugger to hold my rspec test until results comes back from mTurk and then it get stored in VCR. so i have to do this kinda hack once and then after that VCR works for me