# File lib/spec/mocks/spec_methods.rb, line 34 def stub_everything(name = 'stub') Spec.warn("\nDEPRECATION: stub_everything('\#{name}') is deprecated and will be removed\nfrom a future version of rspec. Please use mock('\#{name}').as_null_object\nor stub('\#{name}').as_null_object instead.\n\n") mock(name, :null_object => true) end