diff --git a/cake/tests/cases/console/console_option_parser.test.php b/cake/tests/cases/console/console_option_parser.test.php index aeda66efe..8bdbffcbb 100644 --- a/cake/tests/cases/console/console_option_parser.test.php +++ b/cake/tests/cases/console/console_option_parser.test.php @@ -634,4 +634,14 @@ TEXT; 'quiet' => false), array('c')); $this->assertEquals($expected, $result, 'Sub parser did not parse request.'); } + +/** + * test that the console max width is respected when generating help. + * + * @return void + */ + function testWidthFormatting() { + $this->markTestIncomplete('Width formatting is not done.'); + } + } \ No newline at end of file diff --git a/cake/tests/cases/console/console_output.test.php b/cake/tests/cases/console/console_output.test.php index e4a63b478..71f00a1bd 100644 --- a/cake/tests/cases/console/console_output.test.php +++ b/cake/tests/cases/console/console_output.test.php @@ -188,4 +188,21 @@ class ConsoleOutputTest extends CakeTestCase { $this->output->write('Bad Warning Regular', false); } +/** + * test that multiple tags of the same name work in one string. + * + * @return void + */ + function testFormattingMultipleSameTags() { + $this->markTestIncomplete('This test needs to be written.'); + } + +/** + * test wrapping blocks at certain widths. + * + * @return void + */ + function testFormatBlock() { + $this->markTestIncomplete('This test needs to be written.'); + } } \ No newline at end of file diff --git a/cake/tests/cases/console/libs/shell.test.php b/cake/tests/cases/console/libs/shell.test.php index 87731f88c..95afb6318 100644 --- a/cake/tests/cases/console/libs/shell.test.php +++ b/cake/tests/cases/console/libs/shell.test.php @@ -253,6 +253,15 @@ class ShellTest extends CakeTestCase { $this->Shell->out(); } +/** + * test that verbose and quiet output levels work + * + * @return void + */ + function testVerboseOutput() { + $this->markTestIncomplete('This needs to be written.'); + } + /** * testErr method *