对于rspec生成的脚手架控制器规格发生了什么,我有点困惑.在我向我的应用程序添加授权之前似乎有意义,现在我需要更新我的测试.
MyClass.stub(:new).with('these' => 'params') { mock_my_class(:save => true) }
在我的控制器中,我在创建新记录时将哈希合并到参数中(它需要current_user id有效). MyClass.new(params [:my_class] .merge(:user_id => current_user.id))
测试失败
expected: ({"these"=>"params"}) got: ({"these"=>"params","user_id"=>315})
测试失败是有道理的,因为新方法接收了它没有预料到的参数.它预计会收到{‘这些’=> ‘params’}但它确实收到了”这些’=> ‘params’,’user_id’=> 1234}
所以我的自然反应是调整测试,因为新方法应该接收{‘这些’=> ‘params’,’user_id’=> 1234}并返回模拟对象.
所以我添加测试如下:
MyClass.stub(:new).with({'these' => 'params','user_id' => @user.id}) { mock_my_class(:save => true) }
这是我通过循环抛出的地方.测试结果如下:
expected: ({"these"=>"params","user_id"=>298}) got: ({"these"=>"params"})
好像一次成功的测试似乎神奇地躲避了我.我确信这些结果有合理的原因,但我似乎无法弄明白.
有帮助吗? 原文链接:https://www.f2er.com/ruby/270115.html