コード例 #1
0
ファイル: GlobTest.php プロジェクト: Ronmi/fruit-pathkit
 /**
  * @dataProvider convP
  */
 public function testPathToRegexp($path, $test, $expect)
 {
     $regex = '/^' . Glob::pathToRegexp($path, "/") . '$/';
     if ($expect) {
         $this->assertRegExp($regex, $test);
     } else {
         $this->assertNotRegExp($regex, $test);
     }
 }