I'd like to do something like this:
some_method.should_raise <any kind of exception, I don't care>
How should I do this?
some_method.should_raise exception
... doesn't work.
|
I'd like to do something like this:
How should I do this?
... doesn't work. |
|||
|
|
RSpec 1 Syntax:
See the documentation (for RSpec 1 syntax) and RSpec 2 documentation for more. |
|||||||||||||
|
|
Instead of lambda, use expect to:
This is applies for more recent versions of rspec, i.e. rspec 2.0 and up. See the doco for more. |
|||||||||||||||||
|
|
The syntax changed recently and now it is:
|
|||
|
|
RSpec 2
Note: RSpec 1
Note: Documentation: https://www.relishapp.com/rspecRSpec 2:
RSpec 1: |
|||||||||
|