使用 Savon 测试本地 Web 服务
我正在编写一个 gem,以向 Ruby 添加对 SOAP 服务的支持(我讨厌自己这样做,但是,你知道,遗留系统感到孤独,必须与某人交谈),我想知道是否有一种方法可以编写使用 Savon 作为客户端库的一些测试。
我的问题是:如何告诉 Savon 使用 Rack::Test 调用 WebService?
宝石来源托管在这里:https://github.com/elementar/shapewear
I'm writing a gem to add support for SOAP services to Ruby (I hate myself for doing this but, you know, legacy systems are feeling lonely and gotta talk to someone), and I'm wondering if there's a way I can write some tests using Savon as a client library.
My question is: how can I tell Savon to call the WebService using Rack::Test
?
The gem sources are hosted here: https://github.com/elementar/shapewear
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用了 WebMock gem。结果如下:
https://github.com/elementar/shapewear /blob/master/spec/shapewear/savon_usage_spec.rb
I ended up using the WebMock gem. Here's the result:
https://github.com/elementar/shapewear/blob/master/spec/shapewear/savon_usage_spec.rb