rails/performance_test_help
is an old test helper that was used up to Rails 3.2 for performance testing. It was supposed to be required by performance test cases.
The file was remove in Rails 4 since the performance testing feature was extracted from Rails core and moved to the rails-perftest gem.
If you are using Rails 4, make sure the gem is listed in your Gemfile
, and it's correctly installed. If you don't use the feature, simply drop the performance test cases.
To lookup the offending file, simply search your project codebase for any require 'rails/performance_test_help'
statement, and either fix the issue or remove the offending file if you don't need the performance test case.