mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-26 14:38:18 +01:00
88ff113f92
Summary: This class provides an adapter for [[https://github.com/less/less.js/ | lessc]]. Test Plan: Wrote and executed unit tests. Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D8992
12 lines
241 B
PHP
12 lines
241 B
PHP
<?php
|
|
|
|
final class ArcanistLesscLinterTestCase
|
|
extends ArcanistArcanistLinterTestCase {
|
|
|
|
public function testLesscLinter() {
|
|
$this->executeTestsInDirectory(
|
|
dirname(__FILE__).'/lessc/',
|
|
new ArcanistLesscLinter());
|
|
}
|
|
|
|
}
|