blowmage / minitest-rails-capybara

Capybara integration for MiniTest::Rails
http://blowmage.com/minitest-rails-capybara
MIT License
131 stars 40 forks source link

[FIX] cannot load such file -- minitest_helper (LoadError) #13

Closed rthbound closed 11 years ago

rthbound commented 11 years ago

@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 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:

  1. mv test/test_helper.rb test/minitest_helper.rb or
  2. Edit each generated feature to require "test_helper" instead.
blowmage commented 11 years ago

Thanks for your contribution.

rthbound commented 11 years ago

@blowmage you're welcome, and thank you for your work.