public function getDate()
 {
     $this->__load();
     return parent::getDate();
 }
Exemplo n.º 2
0
 public function test_date_should_default_to_now()
 {
     $now = new \DateTime('now');
     $comment = new Comment();
     $this->assertEquals($now, $comment->getDate());
 }