Minitest Global Hooks for Setup/Teardown
https://github.com/bbbco/minitest-global_hooks.git
minitest-global_hooks =====================
Minitest Global Hooks for Setup/Teardown
Minitest Global Hooks plugin provides global_setup and global_teardown
hooks that you can use in your test helper to run a block of code to execute
immediately before all of your tests start and immediately after all of your
tests have completed.
Include in your Gemfile:
%%CODEBLOCK0%%
Require in your test helper:
%%CODEBLOCK1%%
Then, in your test helper, override the methods as needed:
%%CODEBLOCK2%%