13 lines
256 B
PHP
13 lines
256 B
PHP
<?php
|
|
|
|
class CSSTest extends MailPoetTest {
|
|
public function _before() {
|
|
$this->css = new \MailPoet\Util\CSS();
|
|
}
|
|
|
|
// tests
|
|
public function testItCanBeInstantiated() {
|
|
expect_that($this->css instanceof \MailPoet\Util\CSS);
|
|
}
|
|
}
|