我想做这样的事情:
some_method.should_raise <any kind of exception, I don't care>
我该怎么做?
some_method.should_raise exception
......不起作用。
expect { some_method }.to raise_error
RSpec 1 语法:
lambda { some_method }.should raise_error
有关更多信息,请参阅文档(对于 RSpec 1 语法)和RSpec 2 文档。