Mocha v2.7.0 released
* Fail fast if invocation matches never expectation - thanks to Duke Tran & @DavidStosik for reporting
This fixes a long-time bug so that the following will fail fast instead of passing:
foo.stubs(:bar)
foo.expects(:bar).never
foo.bar # => unexpected invocation error
@floehopper This found a bug in one of our tests. Yay! Thanks!