Socket
Book a DemoInstallSign in
Socket

minitest-keyword

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minitest-keyword

2.0.0
bundlerRubygems
Version published
Maintainers
1
Created
Source

Minitest::Keyword

Build Status Gem Version

A small gem for allowing you to use Minitest assertions with keyword arguments. No longer worry about remembering the order of arguments!

Installation

Add this line to your application's Gemfile:

gem "minitest-keyword"

And then execute:

$ bundle

Or install it yourself as:

$ gem install minitest-keyword

Usage

Add require "minitest/keyword" to your test_helper.rb script. In your tests you will now be able to change your assertions from:

assert_equal "foo", foo.inspect

to:

assert_equal expected: "foo", actual: foo.inspect

All of the standard Minitest assertions can now be used with keyword arguments. Note that this gem is still backwards-compatible with Minitest itself, so your existing tests won't break.

Cheat Sheet

The actual keyword method creation is done through introspection, but the equivalent method signatures are listed below. Note that when you see message: nil it effectively means that you can pass through a message or it will use whatever standard Minitest message is configured for that assertion.

assert             test:, message: nil
assert_empty       object:, message: nil
assert_equal       expected:, actual:, message: nil
assert_in_delta    expected:, actual:, delta: 0.001, message: nil
assert_in_epsilon  expected:, actual:, epsilon: 0.001, message: nil
assert_includes    collection:, object:, message: nil
assert_instance_of class:, object:, message: nil
assert_kind_of     class:, object:, message: nil
assert_match       matcher:, object:, message: nil
assert_nil         object:, message: nil
assert_operator    receiver:, operator:, argument: UNDEFINED, message: nil
assert_output      stdout: nil, stderr: nil
assert_path_exists path:, message: nil
assert_predicate   receiver:, operator:, message: nil
assert_raises      expected: []
assert_respond_to  object:, method:, message: nil, include_all: false
assert_same        expected:, actual:, message: nil
assert_throws      symbol:, message: nil

The associated refutations are also overridden, with the below signatures.

refute             test:, message: nil
refute_empty       object:, message: nil
refute_equal       expected:, actual:, message: nil
refute_in_delta    expected:, actual:, delta: 0.001, message: nil
refute_in_epsilon  expected:, actual:, epsilon: 0.001, message: nil
refute_includes    collection:, object:, message: nil
refute_instance_of class:, object:, message: nil
refute_kind_of     class:, object:, message: nil
refute_match       matcher:, object:, message: nil
refute_nil         object:, message: nil
refute_operator    receiver:, operator:, argument: UNDEFINED, message: nil
refute_path_exists path:, message: nil
refute_predicate   receiver:, operator:, message: nil
refute_respond_to  object:, method:, message: nil, include_all: false
refute_same        expected:, actual:, message: nil

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kddnewton/minitest-keyword.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 23 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.