On 8/14/07, aslak hellesoy <[EMAIL PROTECTED]> wrote: > On 8/15/07, Scott Taylor <[EMAIL PROTECTED]> wrote: > > > > Mocha's mock/stub framework has the ability to stub all methods on a > > mock given. Does RSpec's mocking framework have this ability? >
You mean like :null_object => true ?? ============ http://rspec.rubyforge.org/documentation/mocks/mocks.html "As above, but allows you to specific options to tweak the mock's behaviour. The options argument is a hash. Currently the only supported option is :null_object. Setting this to true instructs the mock to ignore (quietly consume) any messages it hasn't been told to expect – and return itself. i.e. my_mock = mock("blah", :null_object => true) _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
