Sabberworm\CSS\CSSList\AtRuleBlockListTest::testMediaQueries PHP Method

testMediaQueries() public method

public testMediaQueries ( )
    public function testMediaQueries()
    {
        $sCss = '@media(min-width: 768px){.class{color:red}}';
        $oParser = new Parser($sCss);
        $oDoc = $oParser->parse();
        $aContents = $oDoc->getContents();
        $oMediaQuery = $aContents[0];
        $this->assertSame('media', $oMediaQuery->atRuleName(), 'Does not interpret the type as a function');
        $this->assertSame('(min-width: 768px)', $oMediaQuery->atRuleArgs(), 'The media query is the value');
        $sCss = '@media (min-width: 768px) {.class{color:red}}';
        $oParser = new Parser($sCss);
        $oDoc = $oParser->parse();
        $aContents = $oDoc->getContents();
        $oMediaQuery = $aContents[0];
        $this->assertSame('media', $oMediaQuery->atRuleName(), 'Does not interpret the type as a function');
        $this->assertSame('(min-width: 768px)', $oMediaQuery->atRuleArgs(), 'The media query is the value');
    }
AtRuleBlockListTest