mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-19 02:08:37 +01:00
Summary: Creates a new base class for unit testing `ArcanistExternalLinter` subclasses. Specifically, add a test case for verifying that we are correctly parsing the output of `$external_linter --version`. Test Plan: `arc unit` Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11197
9 lines
192 B
PHP
9 lines
192 B
PHP
<?php
|
|
|
|
final class ArcanistPEP8LinterTestCase extends ArcanistExternalLinterTestCase {
|
|
|
|
public function testLinter() {
|
|
$this->executeTestsInDirectory(dirname(__FILE__).'/pep8/');
|
|
}
|
|
|
|
}
|