public function testCanRemoveAttemptsByEmail()
 {
     $this->saveTestPasswordReset();
     $this->seeInDatabase('password_resets', ['email' => '*****@*****.**', 'token' => 'test_token_yo']);
     $this->repository->removeByEmail('*****@*****.**');
     $this->dontSeeInDatabase('password_resets', ['email' => '*****@*****.**', 'token' => 'test_token_yo']);
 }