我想要实现的是在rails3 中使用 webrat 进行集成测试,就像 Yehuda 在http://pivotallabs.com/talks/76-extending-rails-3第 34 分钟中使用 test-unit 所做的那样。
一个例子:
describe SomeApp
it "should show the index page"
visit "/"
body.should =~ /hello world/
end
end
有人知道一种方法吗?