0byt3m1n1
Path:
/
home
/
k
/
a
/
s
/
kassiope
/
www
/
vendor
/
css-crush
/
css-crush
/
tests
/
unit
/
CssCrush
/
[
Home
]
File: ExtendArgTest.php
<?php namespace CssCrush\UnitTest; use CssCrush\ExtendArg; class ExtendArgTest extends \PHPUnit_Framework_TestCase { public function test__construct() { $extend_arg = new ExtendArg('.foo :hover!'); $this->assertEquals('.foo :hover', $extend_arg->name); $this->assertEquals(':hover', $extend_arg->pseudo); } }