私が達成しようとしているのは、http://pivotallabs.com/talks/76-extending-rails-3 分 34 で Yehuda が test-unit で行うように、rails3 で webrat との統合テストを行うことです。
例:
describe SomeApp
it "should show the index page"
visit "/"
body.should =~ /hello world/
end
end
誰かがそれを行う方法を知っていますか?