Преглед изворни кода

only test examples which find a php class.

Justin Hileman пре 15 година
родитељ
комит
c2c01cf964
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      test/MustacheTest.php

+ 3 - 1
test/MustacheTest.php

@@ -283,7 +283,9 @@ class MustacheTest extends PHPUnit_Framework_TestCase {
 					}
 				}
 
-				$ret[$example] = array($class, $template, $output);
+				if (!empty($class)) {
+					$ret[$example] = array($class, $template, $output);
+				}
 			}
 
 			$files->next();