public function testGetDateDiff()
 {
     $diff = $this->_model->getDateDiff('2011-01-01', '2011-01-01');
     $this->assertInstanceOf('Zend_Db_Expr', $diff);
     $this->assertContains('TO_DAYS', (string) $diff);
 }