I am new to Ruby on Rails and testing. When I run rake test I get the following error:
rake test
/Users/jarvis/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/r
uninstall your minitest first. gem uninstall minitest.
if you are using turn make sure the version is less 0.8.3
put those code to your bottom of your Gemfile
group :test do gem 'turn', '< 0.8.3' gem 'minitest' end
then run
bundle install