0

私はこのコントローラーコードを持っています:

# GET /cardsets/1
def show
  @cardset = current_user.cardsets.find_by_id(params[:id])
end

そして、このRSpecテストコード(Mochaでモック):

# GET Show
context "on get to show" do
  it "should assign cardset" do
    @cardset = Factory(:cardset)
    @profile = @cardset.profile

    @profile.cardsets.expects(:find).once.returns(@cardset)
    get :show, :id => @cardset.id
    assigns[:cardset].should_not be_nil
  end
end

このテストは次の場合に失敗します。

2)
Mocha::ExpectationError in 'CardsetsController for a logged in user on get to show should assign cardset'
not all expectations were satisfied
unsatisfied expectations:
- expected exactly once, not yet invoked: [#<Cardset:0x1032bb660>].find(any_parameters)
satisfied expectations:
- allowed any number of times, not yet invoked: ApplicationController.require_user(any_parameters)
- allowed any number of times, already invoked twice:     #<CardsetsController:0x10336c578>.current_user(any_parameters)

期待値を次のように変更した場合:

@profile.cardsets.expects(:find_by_id).once.returns(@cardset)

次に、テストに合格します。なぜこれはfind_by_idで合格し、見つからないのでしょうか。

4

1 に答える 1

1

findこれは、find_by_id実際には異なるメッセージだからだと思います。コントローラはを使用しfind_by_idますが、メッセージの期待値を設定していますfind

于 2010-07-07T21:49:45.990 に答える