This commit is contained in:
thinkphp
2016-10-26 12:10:35 +08:00
parent 087e968b80
commit 82b94b555f
3 changed files with 12 additions and 10 deletions

View File

@@ -25,13 +25,13 @@ class urlTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
Route::rules(['GET' => [],
'POST' => [],
'PUT' => [],
'DELETE' => [],
'PATCH' => [],
'HEAD' => [],
'OPTIONS' => [],
Route::rules(['get' => [],
'post' => [],
'put' => [],
'delete' => [],
'patch' => [],
'head' => [],
'options' => [],
'*' => [],
'alias' => [],
'domain' => [],