module RSpec::Rails::Mocks::ActiveRecordStubExtensions

def as_new_record

Stubs +id+ (or other primary key method) to return nil
def as_new_record
  self.__send__("#{self.class.primary_key}=", nil)
  super
end