我正在使用带有标准rails 2.1项目的Test/Unit .我希望能够独立于任何特定的控制器/操作测试部分视图.
似乎ZenTest的Test :: Rails :: ViewTestCase会有所帮助,但是我无法使它工作,类似于view_test http://www.continuousthinking.com/tags/view_test
谷歌出现的大部分内容似乎已经过时了,所以我猜测Rails 2.1并没有真正起作用
对此的任何帮助都非常感激.
谢谢,罗兰
我们在Rails 2.1项目中使用RSpec,我们可以做这样的事情:
describe "/posts/_form" do before do render :partial => "posts/form" end it "says hello" do response.should match(/hello/i) end it "renders a form" do response.should have_tag("form") end end
但是我不知道你可以用vanilla Rails测试设备做多少.