浏览代码

Skip if not function exists.

Mark Scherer 11 年之前
父节点
当前提交
e42f854ef7
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      Test/Case/Model/Datasource/ImapSourceTest.php

+ 6 - 1
Test/Case/Model/Datasource/ImapSourceTest.php

@@ -42,8 +42,13 @@ class ImapSourceTest extends MyCakeTestCase {
 		//$this->assertEquals($expected, $result);
 		$this->debug($result);
 	}
-
+	
+	/**
+	 * @return void
+	 */
 	public function testMakeSearch() {
+		$this->skipIf(!function_exists('imap_open'), 'No imap_open() function available. Please install extension/module.');
+	
 		$query = [
 			'answered' => 1,
 			'seen' => true,