It seems to me that in your case you do not need to uninstall minitest, just add rspec to your Gemfile and start using it. However, I recommend that you make RSpec the default test environment. Just add the following line to config / application.rb:
config.generators.test_framework :rspec
What is it. Rails now knows that you are using RSpec, and when you use Rails generators, it will add the corresponding RSpec guardian files, not Minitest. If you have a test folder in your application (it is used by Minitest and Test :: Unit), you can delete it now.
source share