Phalcon\Test\Unit\Assets\Filters\JsminTest::testFilterJsminComment PHP 메소드

testFilterJsminComment() 공개 메소드

Tests jsmin filter with comment
부터: 2016-01-24
저자: Serghei Iakovlev ([email protected])
    public function testFilterJsminComment()
    {
        $this->specify("The jsmin filter with comment parameter return comment back", function () {
            $jsmin = new Jsmin();
            expect($jsmin->filter('/** this is a comment */'))->isEmpty();
        });
    }