Phalcon\Test\Unit\Assets\Filters\JsminTest::testFilterJsminEmptyString PHP Метод

testFilterJsminEmptyString() публичный Метод

Tests jsmin filter with empty string
С версии: 2016-01-24
Автор: 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();
        });
    }