From 4f3a2870a5216ae9002f84d709471e2a5de07306 Mon Sep 17 00:00:00 2001 From: Mario Rothauer Date: Tue, 23 Aug 2022 17:25:53 +0200 Subject: [PATCH] remove unfinished tests --- tests/TestCase/Filter/CleanCssTest.php | 46 -------------------------- 1 file changed, 46 deletions(-) delete mode 100644 tests/TestCase/Filter/CleanCssTest.php diff --git a/tests/TestCase/Filter/CleanCssTest.php b/tests/TestCase/Filter/CleanCssTest.php deleted file mode 100644 index 21b466f..0000000 --- a/tests/TestCase/Filter/CleanCssTest.php +++ /dev/null @@ -1,46 +0,0 @@ -_cssDir = APP . 'css' . DS; - $this->filter = new CleanCss(); - } - - public function testUnminified() - { - $content = file_get_contents($this->_cssDir . 'unminified.css'); - $result = $this->filter->output($this->_cssDir . 'unminified.css', $content); - - $expected = file_get_contents($this->_cssDir . 'minified.css'); - $this->assertEquals(trim($expected), $result); - } - - public function testAlreadyMinified() - { - $content = file_get_contents($this->_cssDir . 'minified.css'); - $result = $this->filter->output($this->_cssDir . 'minified.css', $content); - - $expected = file_get_contents($this->_cssDir . 'minified.css'); - $this->assertEquals(trim($expected), $result); - } -}