I\'m following the rails tutorial here: http://railstutorial.org/chapters/filling-in-the-layout#top
When I run \"rspec spec/\", I get a bunch of errors that look lik
my gemfile looked like this and it works
group :test do gem 'rspec-rails' gem 'webrat', '0.7.1' end
where rspec-rails (2.1.0)
however following doesn't:
group :test do gem 'rspec-rails' gem 'webrat', '0.7.2' end
So I think it is webrat plays up.