如何在Rails中测试send_data方法?
解决方法
当我阅读他的问题时,我认为这是什么意思,他如何确保send_data发送字符串/他要求的任何东西.不是要测试它的发送,而是要确保他安心,他发送的方法不是空白的.像你所做的那样,嘲笑,并不真正让他得到结果.
也许你可以确保你的字符串不是空白的,或者类似的.这样你不会测试send_data,但是send_data获取的是你想要的样子.
在我的情况下(什么让我这个问题)将是
#just use this to make sure it looks like you want it to while you are writing your #tests. I remove it after. make sure it's an instance variable @csv_string in my case. puts assigns(:csv_string) refute_nil assigns(:csv_string) #does the actual work. delete the puts line when done.
一些爱好者使用红宝石调试器,并且您的里程将会有所不同.