When I try to run the tests from within RubyMine I have an issue. But what is strange is that it work fine when I run the tests from the command line.
\"Test
There is a nice tutorial for setting up RubyMine tests in their online help, which helped me resolve the same problem as you describe (for Test::Unit-style tests). Basically you need to include the minitest and minitest-reporters gems into your project and add a call to use the new format of tests reporting:
# Gemfile
group :test do
gem 'minitest'
gem 'minitest-reporters'
end
# test/test_helper.rb
require 'minitest/reporters'
MiniTest::Reporters.use!
Take a look at the tutorial for more options.