1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-17 13:18:13 +01:00
minify/tests/MinifyCacheFileTest.php
2017-12-22 18:05:33 +02:00

30 lines
658 B
PHP

<?php
namespace Minify\Test;
use Minify_Cache_File;
class MinifyCacheFileTest extends TestCase
{
public function test1()
{
$data = str_repeat(md5(time()) . 'í', 100); // 3400 bytes in UTF-8
$id = 'Minify_test_cache_noLock';
$cache = new Minify_Cache_File();
$this->assertTestCache($cache, $id, $data);
}
/**
* test with locks
*/
public function test2()
{
$data = str_repeat(md5(time()) . 'í', 100); // 3400 bytes in UTF-8
$id = 'Minify_test_cache_withLock';
$cache = new Minify_Cache_File('', true);
$this->assertTestCache($cache, $id, $data);
}
}