Is there an alternative to RSpec\'s before(:suite)
and after(:suite)
in MiniTest?
I suspect that a custom test runner is in order, however
To get this to work with the current version of Minitest (5.0.6) you need to require 'minitest'
and use Minitest.after_run { ... }
.
warn "MiniTest::Unit.after_tests is now Minitest.after_run. ..."
https://github.com/seattlerb/minitest/blob/master/lib/minitest.rb https://github.com/seattlerb/minitest/blob/master/lib/minitest/unit.rb