在rails中进行assert_template测试。它看起来是什么文件夹?

时间:2015-01-26 23:07:01

标签: ruby-on-rails tdd

我正在尝试在rails应用程序中编写assert_template测试。我要渲染的视图位于

应用程序/视图/播放/ index.html.erb

我的测试只是:

assert_template :index => "plays"

1 个答案:

答案 0 :(得分:0)

这个怎么样:

# assert that the exact template "plays/index" was rendered
assert_template %r{\Aplays/index\Z}

%r表示正则表达式。