๐Ÿ“ฆ bbbco / minitest-global_hooks

Minitest Global Hooks for Setup/Teardown

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/bbbco/minitest-global_hooks.git
HTTPS git clone https://github.com/bbbco/minitest-global_hooks.git
SSH git clone git@github.com:bbbco/minitest-global_hooks.git
CLI gh repo clone bbbco/minitest-global_hooks
Brian Goad Brian Goad add version ... duh 53f5dff 12 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ lib
๐Ÿ“„ .gitignore
๐Ÿ“„ Gemfile
๐Ÿ“„ LICENSE.txt
๐Ÿ“„ Rakefile
๐Ÿ“„ README.md
๐Ÿ“„ README.md

minitest-global_hooks =====================

Minitest Global Hooks for Setup/Teardown

Description

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.

Usage

Include in your Gemfile:

%%CODEBLOCK0%%

Require in your test helper:

%%CODEBLOCK1%%

Then, in your test helper, override the methods as needed:

%%CODEBLOCK2%%