Re: [rspec-users] RSpec 2.6 + Capybara 1.0 incompatibility

2011-06-17 Thread Kai Schlamp
Thank you, David. After removing the Webrat stuff everything runs perfectly again. Regards, Kai ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] RSpec 2.6 + Capybara 1.0 incompatibility

2011-06-17 Thread David Chelimsky
On Jun 17, 2011, at 2:20 PM, Kai Schlamp wrote: > Here is also the spec helper I use for my integration tests: > > ENV["RAILS_ENV"] ||= 'test' > require File.expand_path("../../config/environment", __FILE__) > require 'rspec/rails' > require 'webrat' > require 'capybara/rspec' > require "database

Re: [rspec-users] RSpec 2.6 + Capybara 1.0 incompatibility

2011-06-17 Thread Kai Schlamp
Here is also the spec helper I use for my integration tests: ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../../config/environment", __FILE__) require 'rspec/rails' require 'webrat' require 'capybara/rspec' require "database_cleaner" Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each