![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/marcusschwarz/lesserphp/tests/ |
<?php use PHPUnit\Framework\TestCase; class ServerTest extends TestCase { public function testCheckedCachedCompile() { $server = new lessc(); $server->setImportDir(__DIR__ . '/inputs/test-imports/'); $css = $server->checkedCachedCompile(__DIR__ . '/inputs/import.less', '/tmp/less.css'); $this->assertFileExists('/tmp/less.css'); $this->assertFileExists('/tmp/less.css.meta'); $this->assertEquals($css, file_get_contents('/tmp/less.css')); $this->assertNotNull(unserialize(file_get_contents('/tmp/less.css.meta'))); } }