messageFull() public method

public messageFull ( ) : string
return string The full commit log message
Exemplo n.º 1
0
 public function testMessageFull()
 {
     $output = 'Create GitCommit class';
     $this->stubGitRootForMessage($output);
     $commit = new Commit($this->gitRoot, 'HEAD');
     $this->assertContains('a57a2664feafb26c61d269babc63b272ed87544d', $commit->messageFull(), 'hash');
 }