Example #1
0
 public function testBeforeSave()
 {
     $this->assertNull($this->query->getCreatedAt());
     $this->query->beforeSave();
     $currentDate = new \DateTime('now', new \DateTimeZone('UTC'));
     $this->assertEquals($currentDate->format('Y-m-d'), $this->query->getCreatedAt()->format('Y-m-d'));
 }