Esempio n. 1
0
 public function testPersonIsLockedIfLockedUntilIsInTheFuture()
 {
     $person = new Person([]);
     $this->assertFalse($person->isLocked());
     $person = new Person(['locked_until' => time() - 10]);
     $this->assertFalse($person->isLocked());
     $person = new Person(['locked_until' => time() + 10]);
     $this->assertTrue($person->isLocked());
 }