Files
FreshRSS/tests/lib/CssXPath/CssXPathTest.php
Artur Weigandt d6fd78b968 Allow CssXPath updates with composer (#4368)
* Install CssXPath with composer

* Fix code style in tests

* fix pathnames for tests and linting

* add irrelevant files to .gitignore

* Alphabetic order

* let composer sort the packages alphabetically

Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2022-05-16 12:04:43 +02:00

9 lines
186 B
PHP

<?php
class CssXPathTest extends PHPUnit\Framework\TestCase
{
public function testCssXPathTranslatorClassExists() {
$this->assertTrue(class_exists('Gt\\CssXPath\\Translator'));
}
}