Add this line to your application's Gemfile:
gem 'rspec-instrumentation-matcher'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec-instrumentation-matcher
expect{ subject.do_something }.to instrument("key").with( foo: :bar )
expect{ subject.do_something }.to instrument("key").once
expect{ subject.do_something }.to instrument("key").twice
expect{ subject.do_something }.to instrument("key").never
expect{ subject.do_something }.to instrument("key").at_least(1)
expect{ subject.do_something }.to instrument("key").at_most(10)
expect{ subject.do_something }.to instrument("key").times(5)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request