Pipe\Test\EnvironmentTest::testSetCssCompressorRegistersBundleProcessor PHP Method

testSetCssCompressorRegistersBundleProcessor() public method

    function testSetCssCompressorRegistersBundleProcessor()
    {
        $this->environment->setCssCompressor('yuglify_css');
        $bundleProcessors = $this->environment->bundleProcessors;
        $this->assertTrue($bundleProcessors->isRegistered($this->environment->contentType('.css'), '\\Pipe\\Compressor\\YuglifyCss'));
    }