• File: AtRuleBlockListTest.php
  • Full Path: /home/masbinta/public_html/core/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/CSSList/AtRuleBlockListTest.php
  • File size: 968 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Sabberworm\CSS\CSSList;

use Sabberworm\CSS\Parser;

class AtRuleBlockListTest extends \PHPUnit_Framework_TestCase {

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

}