Ejemplo n.º 1
0
 public function testRevParse()
 {
     $this->getRepository()->init();
     $this->addFile('test');
     $this->repository->stage();
     $commit = Commit::create($this->repository, 'first commit', true);
     $revParse = $commit->revParse();
     $this->assertEquals($commit->getSha(), $revParse[0]);
 }