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();
        });
    }