This gem provides a context
method for Minitest::Spec
Add this line to your application's Gemfile:
gem 'minitest-spec-context'
And then execute:
$ bundle
Or install it yourself as:
$ gem install minitest-spec-context
Require the gem in the test_helper
:
require "minitest-spec-context"
And now you can use it:
describe "#method" do
context "when condition 1" do
it "does something" do
...
end
end
context "when condition 2" do
it "does something else" do
...
end
end
end
The context
method is available only in the nested blocks. One cannot use it in the outside most block. I simply do not desire to introduce a new method in ruby Kernel
module
The context
method is also available on ActiveSupport::TestCase
, for use within Rails applications.
class ActiveSupport::TestCase
context "when using Rails" do
...
end
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request