예제 #1
0
 /**
  * Validate that invalid date combinations are validated (i.e. dates
  * where all parts are valid but the date is not possible)
  */
 public function test_version1importvalidatesincorrectdatecombination()
 {
     $plugin = new rlip_importplugin_version1();
     $timestamp = $plugin->parse_date('Feb/31/2010');
     $this->assertFalse($timestamp);
 }