Fix formatter tests

This commit is contained in:
Mario Franco 2013-05-03 14:49:17 +01:00
parent 1dc3380e8e
commit e6b6987141
2 changed files with 22 additions and 2 deletions

View File

@ -297,7 +297,7 @@ a:
* description: A nice description * description: A nice description
### `ANY` /my-commented/{id}/{page} ### ### `ANY` /my-commented/{id}/{page}/{paramType}/{param} ###
### This method is deprecated ### ### This method is deprecated ###
@ -312,6 +312,14 @@ _This method is useful to test if the getDocComment works._
**page** **page**
- Type: int - Type: int
**paramType**
- Type: int
- Description: The param type
**param**
- Type: int
- Description: The param id
### `ANY` /secure-route ### ### `ANY` /secure-route ###

View File

@ -400,7 +400,7 @@ With multiple lines.',
6 => 6 =>
array( array(
'method' => 'ANY', 'method' => 'ANY',
'uri' => '/my-commented/{id}/{page}', 'uri' => '/my-commented/{id}/{page}/{paramType}/{param}',
'description' => 'This method is useful to test if the getDocComment works.', 'description' => 'This method is useful to test if the getDocComment works.',
'documentation' => 'This method is useful to test if the getDocComment works. 'documentation' => 'This method is useful to test if the getDocComment works.
And, it supports multilines until the first \'@\' char.', And, it supports multilines until the first \'@\' char.',
@ -418,6 +418,18 @@ And, it supports multilines until the first \'@\' char.',
'description' => '', 'description' => '',
'requirement' => '', 'requirement' => '',
), ),
'paramType' =>
array (
'dataType' => 'int',
'description' => 'The param type',
'requirement' => '',
),
'param' =>
array (
'dataType' => 'int',
'description' => 'The param id',
'requirement' => '',
),
), ),
'https' => false, 'https' => false,
'description' => 'This method is useful to test if the getDocComment works.', 'description' => 'This method is useful to test if the getDocComment works.',