I did this with webrat 0.7.2, rails 3.0.1, test-unit 2.1.1: require "webrat" require 'webrat/core/matchers' include Webrat::Methods
Webrat.configure do |config| config.mode = :rack end and for now I can run tests like this: test "testing_webrat_visit" do visit 'home/index' end maybe some methods from webrat won't work, but I haven't found them yet. -- Posted via http://www.ruby-forum.com/. _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
