shouldReceiveSameLine(); $this->shouldWrite("\e[mGimmie the secret: \e[0m"); $this->reader->shouldReceive('hidden')->andReturn('mypasswordyo'); $input = $this->cli->password('Gimmie the secret:', $this->reader); $response = $input->prompt(); $this->assertSame($response, 'mypasswordyo'); } }