Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我该如何测试:
render view: "create", model: [user: user]
我知道如何测试redirectArgs 和东西,但我找不到一个例子来测试这样的东西。似乎文章和东西不去测试这个....
renderArgs是你想要的。(来自ControllerUnitTestCase)
renderArgs
ControllerUnitTestCase
例如,测试将呈现正确的视图
assertEquals 'create', renderArgs.view
检查型号
assertEquals user, renderArgs.model.user
确保您的测试扩展ControllerUnitTestCase
等等等等