2013-01-22 73 views
1

沒有實例變量我有簡單的API控制器show行動:如何測試respond_with當在控制器

def show 
    respond_with(current_api_user) 
end 

其中current_api_user是看門的寶石提供的方法。最近我用assigns方法測試了這種情況,但是在這個控制器中沒有實例變量賦值。有沒有一些現成的測試助手嘲笑控制器'respond_with?我應該自己嘲笑它嗎?

任何幫助表示讚賞。

回答

-1

我剛剛遇到同樣的問題。只需傳入nil以代替實例變量,例如:

respond_with(nil, current_api_user) 
相關問題