Phalcon\Test\Unit\Assets\Filters\JsminTest::testFilterJsminEmptyString PHP Method

testFilterJsminEmptyString() public method

Tests jsmin filter with empty string
Since: 2016-01-24
Author: Serghei Iakovlev ([email protected])
    public function testFilterJsminEmptyString()
    {
        $this->specify("The jsmin filter with empty parameter does not return empty back", function () {
            $jsmin = new Jsmin();
            expect($jsmin->filter(''))->isEmpty();
        });
    }