diff --git a/min_unit_tests/test_Minify_ImportProcessor.php b/min_unit_tests/test_Minify_ImportProcessor.php deleted file mode 100644 index fc28c58..0000000 --- a/min_unit_tests/test_Minify_ImportProcessor.php +++ /dev/null @@ -1,37 +0,0 @@ -assertSame($expected, $actual, 'ImportProcessor'); + + $expectedIncludes = array( + realpath($linDir . '/css/input.css'), + realpath($linDir . '/css/adjacent.css'), + realpath($linDir . '/../css/styles.css'), + realpath($linDir . '/css/1/tv.css'), + realpath($linDir . '/css/1/adjacent.css'), + realpath($linDir . '/lib/css/example.css'), + ); + + $this->assertEquals($expectedIncludes, Minify_ImportProcessor::$filesIncluded, 'included right files in right order'); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php index 49066d0..dcd4872 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -16,7 +16,8 @@ class TestCase extends PHPUnit_Framework_TestCase * * @link http://stackoverflow.com/q/2736343/2314626 */ - public function test_does_nothing() { + public function test_does_nothing() + { } } \ No newline at end of file