Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/__tests__/ArcanistRuboCopLinterTestCase.php
- This file was added.
| <?php | |||||
| final class ArcanistRuboCopLinterTestCase | |||||
| extends ArcanistExternalLinterTestCase { | |||||
joshuaspence: After D11197, this should extend from `ArcanistExternalLinterTestCase`. | |||||
| public function testLinter() { | |||||
| $this->executeTestsInDirectory(dirname(__FILE__).'/rubocop/'); | |||||
| } | |||||
| } | |||||
Not Done Inline ActionsAfter D11172, this should just be $this->executeTestsInDirectory(dirname(__FILE__).'/rubocop/'); joshuaspence: After D11172, this should just be `$this->executeTestsInDirectory(dirname(__FILE__). | |||||
After D11197, this should extend from ArcanistExternalLinterTestCase.