Pipe\Test\EnvironmentTest::testSetJsCompressorRegistersBundleProcessor PHP Method

testSetJsCompressorRegistersBundleProcessor() public method

    function testSetJsCompressorRegistersBundleProcessor()
    {
        $this->environment->setJsCompressor('uglify_js');
        $bundleProcessors = $this->environment->bundleProcessors;
        $this->assertTrue($bundleProcessors->isRegistered($this->environment->contentType('.js'), '\\Pipe\\Compressor\\UglifyJs'));
    }