Пример #1
0
 public function checkMimeTypeDetection()
 {
     $rp = new Repository_Post();
     $type = $rp->getType('<?php echo "foo"; ?>', true);
     if ($type != 'php') {
         $msg = 'MIME type detection fails';
         if ($type instanceof \PEAR_Error) {
             $msg .= '. Error: ' . $type->getMessage();
         }
         $this->fail($msg);
     }
 }