mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-03 18:38:26 +01:00
da02add6c8
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
10 lines
198 B
PHP
10 lines
198 B
PHP
<?php
|
|
|
|
final class ArcanistJSHintLinterTestCase
|
|
extends ArcanistExternalLinterTestCase {
|
|
|
|
public function testLinter() {
|
|
$this->executeTestsInDirectory(dirname(__FILE__).'/jshint/');
|
|
}
|
|
|
|
}
|