How would I do the equivalent of rspec before(:all) in minitest. I have a group of tests that take forever to run but it would be really fast if I didn't have to setup the database before each test.
What I would like to do is:
before(:all) do
config.transactional_fixtures = false
DatabaseCleaner.start
end
......
# block of 6 tests in their own describe block.
......
after(:all) do
config.transactional_fixtures = true
DatabaseCleaner.clean
end