mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Disable overwrites when no-ansi is present, fixes #3612
This commit is contained in:
parent
e172cd81a1
commit
e0d36e19eb
2 changed files with 20 additions and 6 deletions
|
@ -58,21 +58,27 @@ class ConsoleIOTest extends TestCase
|
|||
->method('write')
|
||||
->with($this->equalTo('something (<question>strlen = 23</question>)'));
|
||||
$outputMock->expects($this->at(1))
|
||||
->method('write')
|
||||
->with($this->equalTo(str_repeat("\x08", 23)), $this->equalTo(false));
|
||||
->method('isDecorated')
|
||||
->willReturn(true);
|
||||
$outputMock->expects($this->at(2))
|
||||
->method('write')
|
||||
->with($this->equalTo('shorter (<comment>12</comment>)'), $this->equalTo(false));
|
||||
->with($this->equalTo(str_repeat("\x08", 23)), $this->equalTo(false));
|
||||
$outputMock->expects($this->at(3))
|
||||
->method('write')
|
||||
->with($this->equalTo(str_repeat(' ', 11)), $this->equalTo(false));
|
||||
->with($this->equalTo('shorter (<comment>12</comment>)'), $this->equalTo(false));
|
||||
$outputMock->expects($this->at(4))
|
||||
->method('write')
|
||||
->with($this->equalTo(str_repeat("\x08", 11)), $this->equalTo(false));
|
||||
->with($this->equalTo(str_repeat(' ', 11)), $this->equalTo(false));
|
||||
$outputMock->expects($this->at(5))
|
||||
->method('write')
|
||||
->with($this->equalTo(str_repeat("\x08", 12)), $this->equalTo(false));
|
||||
->with($this->equalTo(str_repeat("\x08", 11)), $this->equalTo(false));
|
||||
$outputMock->expects($this->at(6))
|
||||
->method('isDecorated')
|
||||
->willReturn(true);
|
||||
$outputMock->expects($this->at(7))
|
||||
->method('write')
|
||||
->with($this->equalTo(str_repeat("\x08", 12)), $this->equalTo(false));
|
||||
$outputMock->expects($this->at(8))
|
||||
->method('write')
|
||||
->with($this->equalTo('something longer than initial (<info>34</info>)'));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue