Integration bug with RSpec: can't alias :expect, :assert #6
Description
The README says you can alias assert
with expect
when using RSpec. This actually doesn't work because rspec-expectations already defines expect
(as an alias for lambda
). The outcome is that all examples pass whether they should or not.
RSpec recently added a hook to configure the assertion/expectation library to be either rspec-expectations, stdlib (t/u assertions on 1.8, minitest assertion on 1.9), or both. I tried setting this to use stdlib so rspec-expectations wouldn't be loaded (and define expect
, but then there were errors because wrong
assigns failure_class
the value RSpec::Expectations::ExpectationNotMetError
, which lives (as its name suggests) in rspec-expectations.
Since this isn' t working as advertised, it'd be great if you changed the README to exclude the bit about aliasing assert
with expect
.
Once that's done, I'd like to get this working and am happy to collaborate with you to do so. The question is what belongs where? One possibility is for RSpec to expose a configuration option that turns off the lambda
, expect
alias. Another is for RSpec to expose a better extension point for this sort of integration - something like the mock framework adapters. I'm sure there are several other approaches we could take.
WDYT?