Matchi::Rspec

Version Yard documentation CI RuboCop License

Extend Matchi matchers with some RSpec's ones.

Installation

Add this line to your application's Gemfile:

gem "matchi-rspec"

And then execute:

bundle

Or install it yourself as:

gem install matchi-rspec

Usage

To make Matchi::Rspec available:

require "matchi/rspec"

All examples here assume that this has been done.

Built-in matchers

Identity matcher:

be = Matchi::Matcher::Be.new(42)
be.matches? { 42 } # => true

Type/class matcher:

be_instance_of = Matchi::Matcher::BeInstanceOf.new(String)
be_instance_of.matches? { "foo" } # => true

Equivalence matcher:

eq = Matchi::Matcher::Eq.new("foo")
eq.matches? { "foo" } # => true

Contact

Versioning

Matchi::Rspec follows Semantic Versioning 2.0.

License

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


This project is sponsored by:
Sashite