I found resources for configuring Rails to use Minitest. Unfortunately, most resources require the use of the Minitest Spec for all types of tests or, at best, at least for the integration test.
I can be "vintage", but I feel the ala test: unit statement works better for me than the rspec style. I would use the MiniTest :: Unit ad style with Capybara to run integration tests.
I am interested to see an example of minitest_helper.rb and some_model_integration_test.rb to understand the relevant configuration items that I need to create in order to make the integration test enjoyable with Capybara.
Can someone explain how to configure Rails for this?
source share