我在rails上创建
ruby应用程序:
$bundle exec rake db:migrate $bundle exec rake test:prepare
两个命令都在rails commandLine上正常运行,但是当我运行以下命令时:
$bundle exec rspec spec/models/user_spec.rb
我以下错误:
Warning: you should require 'minitest/autorun' instead. Warning: or add 'gem "minitest"' before 'require "minitest/autorun"'
而我正在使用4.1.1版本的rails.
我不明白为什么会这样.
请建议我,等待你的回复.
谢谢.
解决方法
在“Gemfile”中包含最小的gem,并运行bundle安装
gem install 'minitest'
然后捆绑安装