/**
  * Tests the unauthorized response
  **/
 public function testUpdateUserNotLogged()
 {
     Scenario::logoutUser();
     $this->assertUnauthorized('PUT', 'auth/user', []);
 }