Skip to content
Snippets Groups Projects
Unverified Commit 1fdd6783 authored by Peter Rotich's avatar Peter Rotich Committed by GitHub
Browse files

Merge pull request #4256 from JediKev/tests/git-conflicts

tests: Git Conflict Markers
parents df037225 2ce89377
No related branches found
No related tags found
No related merge requests found
<?php
require_once "class.test.php";
class GitConflicts extends Test {
var $name = "Git Conflicts Checks";
function testFindGitConflicts() {
$regex = '/^[\t ]*?<{3,} ?HEAD[\t ]*?|^[\t ]*?>{3,}[\t ]*?/m';
foreach ($this->getAllScripts('*') as $s) {
$matches = array();
$content = file_get_contents($s);
if (preg_match_all($regex,
$content, $matches,
PREG_OFFSET_CAPTURE) > 0) {
foreach ($matches[0] as $match) {
$this->fail(
$s,
$this->line_number_for_offset($content, $match[1]),
trim($match[0]));
}
}
else $this->pass();
}
}
}
return 'GitConflicts';
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment