module TestProf::Ext::ActiveRecordRefind

def refind

We need it to make sure that the state is clean.

completely re-initialized instance.
Unlike `reload` this method returns

Returns new reloaded record.
def refind
  self.class.find(send(self.class.primary_key))
end