Low commit activity in last 3 years
A long-lived project that still receives updates
Provides context method to Minitest::Spec
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Minitest::Spec::Context

This gem provides a context method for Minitest::Spec

Installation

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

Usage

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

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request