minitest-around
minitest-around copied to clipboard
Around block for minitest.
Results
2
minitest-around issues
Sort by
recently updated
recently updated
newest added
```ruby require "maxitest/autorun" describe "" do around do |test| catch(:_){ test.call } end it do throw :_ end end ``` ```none UncaughtThrowError: uncaught throw :_ ```
How to reproduce: - Setup rails app - require minitest-rails and minitest-around (add them to Gemfile) Workaround: ``` ruby group :test do gem 'minitest-around', :require => false end ``` Possible...