2011-06-29 19 views
3

私の関数が例外から適切にレスキューされることをテストし、パラメータ(ファイル名)を変更して、一度やり直してみてください。私は最初の試行を受け取る機能を得ることができますが、2回目の試行を受けることはできません。Rspec:レスキューをテストする

コントローラ

begin 
    @video = get_video(video_id) 
rescue 
    matches = video_id.match(/(.*)[-](\d+)+x(\d+)_(\d+)/) 
    swapped_dash = (matches && matches.size == 5) ? "#{matches[1]}_#{matches[2]}x#{matches[3]}_#{matches[4]}" : nil 
    @video = swapped_dash.nil? ? false : get_video(swapped_dash) rescue false 
end 

スペック

it "attempts to find a video with an underscore if the original filename is not found" do 
    controller.stub(:get_video).and_return(Exception) 
    controller.should_receive(:get_video).with("MyString-480x272_8").once.ordered 
    controller.should_receive(:get_video).with("MyString_480x272_8").once.ordered 
    get 'player_only', :video_id => "MyString-480x272_8" 
end 

エラー:

(#<WatchController:0x00000105d03c60>).get_video("MyString_480x272_8") 
    expected: 1 time 
    received: 0 times 

は、いくつかのことをしようとしましたが、何も働きません。何かご意見は?

ありがとうございます!

答えて

5

and_raiseではなく、and_returnを使用してください。

controller.stub(:get_video).and_raise(Exception) 
関連する問題