We use RSpec in our Rails 2.1 project, and we can do these things:
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
However, I do not know how much of what you can do with the Rails vanilla checker.
Sam stokes
source share