Skip to content

v0.6.2

Compare
Choose a tag to compare
@Earendil95 Earendil95 released this 26 Oct 18:03
· 21 commits to master since this release
e78e0dd

Fixes

  • ignore feature was documented, but not implemented.
    Now, you actually can set up your own ignore pattern and it will be respected.

  • Matchers propagate inner failures.
    In order to test the behavior along with performance, you always could do something like

    expect do
      expect(query).to match(expected_result)
    end.to perform_constant_number_of_queries

    Previously, in case if the inner expectation was not met, you would receive a very weird error. Now, you will get an actual error message of the inner expectation.