You appear to be a bot. Output may be restricted
Description
No longer expects output: git ls-files This is returned in $result.
Usage
test_class_git::test_command();
Parameters
Returns
void
Source
File name: oik-batch/tests/test-class-git.php
Lines:
1 to 9 of 9
function test_command() { $git = git(); $this->expectOutputString( "git ls-files " . PHP_EOL . PHP_EOL ); $result = $git->command( "list" ); $this->assertContains( "tests/test-class-git.php", $result ); $actual = $this->getActualOutput(); bw_trace2( $actual, "actual output", false ); //echo $actual; }