我已经用wash_out gem 实现了一个Rails 控制器。
我的控制器如下所示:
class TestController < ApplicationController
include WashOut::SOAP
soap_action "int_to_string",
:args => :integer,
:return => :string
def int_to_string
render :soap => params[:value].to_s
end
end
路线.rb:
MyApp::Application.routes.draw do
wash_out :test
end
我不确定如何使用 Rspec 测试这个控制器。
有任何想法吗?