The README instructs users to set up mini_test using the instructions given by minitest-rails.
Following that procedure will create a file called test_helper.rb. These commits will update the minitest-rails-capybara feature generators to require "test_helper" rather than require "minitest_helper".
Without this fix, users who follow the README will need to do one of the following:
mv test/test_helper.rb test/minitest_helper.rb or
Edit each generated feature to require "test_helper" instead.
@blowmage :)
The README instructs users to set up mini_test using the instructions given by minitest-rails.
Following that procedure will create a file called
test_helper.rb
. These commits will update theminitest-rails-capybara
feature generators torequire "test_helper"
rather thanrequire "minitest_helper"
.Without this fix, users who follow the README will need to do one of the following:
mv test/test_helper.rb test/minitest_helper.rb
or