Fix tests

This commit is contained in:
William DURAND 2012-11-17 18:05:05 +01:00
parent 1d72183856
commit b31d439dac
2 changed files with 11 additions and 11 deletions

View File

@ -43,8 +43,8 @@ class MarkdownFormatter extends AbstractFormatter
$markdown .= sprintf(" - Requirement: %s\n", $infos['requirement']); $markdown .= sprintf(" - Requirement: %s\n", $infos['requirement']);
} }
if (!empty($infos['type'])) { if (!empty($infos['dataType'])) {
$markdown .= sprintf(" - Type: %s\n", $infos['type']); $markdown .= sprintf(" - Type: %s\n", $infos['dataType']);
} }
if (!empty($infos['description'])) { if (!empty($infos['description'])) {

View File

@ -48,7 +48,7 @@ class SimpleFormatterTest extends WebTestCase
), ),
'description' => 'index action', 'description' => 'index action',
'requirements' => array( 'requirements' => array(
'_format' => array('type' => '', 'description' => '', 'requirement' => ''), '_format' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
), ),
1 => 1 =>
@ -73,7 +73,7 @@ class SimpleFormatterTest extends WebTestCase
), ),
'description' => 'index action', 'description' => 'index action',
'requirements' => array( 'requirements' => array(
'_format' => array('type' => '', 'description' => '', 'requirement' => ''), '_format' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
), ),
2 => 2 =>
@ -106,7 +106,7 @@ class SimpleFormatterTest extends WebTestCase
), ),
'description' => 'create test', 'description' => 'create test',
'requirements' => array( 'requirements' => array(
'_format' => array('type' => '', 'description' => '', 'requirement' => ''), '_format' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
), ),
3 => 3 =>
@ -139,7 +139,7 @@ class SimpleFormatterTest extends WebTestCase
), ),
'description' => 'create test', 'description' => 'create test',
'requirements' => array( 'requirements' => array(
'_format' => array('type' => '', 'description' => '', 'requirement' => ''), '_format' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
), ),
), ),
@ -173,7 +173,7 @@ class SimpleFormatterTest extends WebTestCase
'uri' => '/any/{foo}', 'uri' => '/any/{foo}',
'requirements' => 'requirements' =>
array( array(
'foo' => array('type' => '', 'description' => '', 'requirement' => ''), 'foo' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
'description' => 'Action without HTTP verb', 'description' => 'Action without HTTP verb',
), ),
@ -290,8 +290,8 @@ With multiple lines.',
'uri' => '/my-commented/{id}/{page}', 'uri' => '/my-commented/{id}/{page}',
'requirements' => 'requirements' =>
array( array(
'id' => array('type' => 'int', 'description' => 'A nice comment', 'requirement' => ''), 'id' => array('dataType' => 'int', 'description' => 'A nice comment', 'requirement' => ''),
'page' => array('type' => 'int', 'description' => '', 'requirement' => ''), 'page' => array('dataType' => 'int', 'description' => '', 'requirement' => ''),
), ),
'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.\nAnd, it supports multilines until the first '@' char." 'documentation' => "This method is useful to test if the getDocComment works.\nAnd, it supports multilines until the first '@' char."
@ -302,7 +302,7 @@ With multiple lines.',
'uri' => '/yet-another/{id}', 'uri' => '/yet-another/{id}',
'requirements' => 'requirements' =>
array( array(
'id' => array('type' => '', 'description' => '', 'requirement' => '\d+') 'id' => array('dataType' => '', 'description' => '', 'requirement' => '\d+')
), ),
), ),
7 => 7 =>
@ -354,7 +354,7 @@ With multiple lines.',
), ),
'description' => 'index action', 'description' => 'index action',
'requirements' => array( 'requirements' => array(
'_format' => array('type' => '', 'description' => '', 'requirement' => ''), '_format' => array('dataType' => '', 'description' => '', 'requirement' => ''),
), ),
); );