mirror of
https://github.com/mrclay/minify.git
synced 2025-08-06 22:26:28 +02:00
port MinifyHTMLTest to phpunit
This commit is contained in:
committed by
Steve Clay
parent
16b8296c34
commit
6e7767aa3e
30
tests/MinifyHTMLTest.php
Normal file
30
tests/MinifyHTMLTest.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
class MinifyHTMLTest extends TestCase
|
||||
{
|
||||
public function test1()
|
||||
{
|
||||
$src = file_get_contents(self::$test_files . '/html/before.html');
|
||||
$minExpected = file_get_contents(self::$test_files . '/html/before.min.html');
|
||||
|
||||
$minOutput = Minify_HTML::minify($src, array(
|
||||
'cssMinifier' => array('Minify_CSSmin', 'minify'),
|
||||
'jsMinifier' => array('JSMin\\JSMin', 'minify'),
|
||||
));
|
||||
|
||||
$this->assertEquals($minExpected, $minOutput);
|
||||
}
|
||||
|
||||
public function test2()
|
||||
{
|
||||
$src = file_get_contents(self::$test_files . '/html/before2.html');
|
||||
$minExpected = file_get_contents(self::$test_files . '/html/before2.min.html');
|
||||
|
||||
$minOutput = Minify_HTML::minify($src, array(
|
||||
'cssMinifier' => array('Minify_CSSmin', 'minify'),
|
||||
'jsMinifier' => array('JSMin\\JSMin', 'minify'),
|
||||
));
|
||||
|
||||
$this->assertEquals($minExpected, $minOutput);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user