| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function testRunCommandOnlyInDevMode() |
||
| 13 | { |
||
| 14 | $io = $this->getMockBuilder('\Composer\IO\ConsoleIO') |
||
| 15 | ->disableOriginalConstructor() |
||
| 16 | ->getMock(); |
||
| 17 | $io->method('isDecorated') |
||
| 18 | ->willReturn(true); |
||
| 19 | |||
| 20 | $this->expectOutputString('foo' . "\n"); |
||
| 21 | ScriptHandler::runCommandOnlyInDevMode('echo "foo"', $io, true); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |