1

Ruby on Rails 3.2.2 で ajax 経由でのみ呼び出していたメソッドは次のとおりです。

def some_ajax_action
    @user = User.find_by_id(params[:id])
    @user_list = User.find_all_by_parent_id(params[:id])
    respond_to do |format|
      format.js
    end
  end

RSpecでテストする必要がある(または可能である)のだろうか?何かご意見は?

4

1 に答える 1

2

どうですか:

before do
  User.stub(:find_by_id)
  User.stub(:find_all_by_parent)
end

it "finds the user" do
  User.should_receive(:find_by_id).with("37")
  xhr <HTTP VERB>, :some_ajax_action, :id => "37"
end

it "finds the user list" do
  User.should_receive(:find_all_by_parent).with("37")
  xhr <HTTP VERB>, :some_ajax_action, :id => "37"
end

<HTTP VERB>これらのajax呼び出しのためにあなたの中にあるものに置き換えてくださいroutes.rb、例えばあなたが持っているなら

get 'some_ajax_action'

その場合、最初のものはになりますxhr :get, :some_ajax_action, :id => "37"

于 2012-08-08T06:30:13.210 に答える