私は、 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 でテストする方法がわかりません。
何か案は?