我正在尝试在rails应用程序中编写assert_template测试。我要渲染的视图位于
中应用程序/视图/播放/ index.html.erb
我的测试只是:
assert_template :index => "plays"
答案 0 :(得分:0)
这个怎么样:
# assert that the exact template "plays/index" was rendered
assert_template %r{\Aplays/index\Z}
%r
表示正则表达式。