Esempio n. 1
0
 public function testSet()
 {
     $now = time();
     $noob = ['lvl' => 1, 'created' => $now];
     $lvl9000 = P::set('lvl', 9000);
     $this->assertEquals(['lvl' => 9000, 'created' => $now], $lvl9000($noob));
 }