From 228b03c14df0adfab6bd102c423dcaf73aec4f88 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 4 Oct 2018 07:26:22 +0200 Subject: update to 2.0.1 drop patch merged upstream --- ResourceOperationsTest.php | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 ResourceOperationsTest.php (limited to 'ResourceOperationsTest.php') diff --git a/ResourceOperationsTest.php b/ResourceOperationsTest.php deleted file mode 100644 index 0e0fcc0..0000000 --- a/ResourceOperationsTest.php +++ /dev/null @@ -1,29 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace SebastianBergmann\ResourceOperations; - -use PHPUnit\Framework\TestCase; - -/** - * @covers SebastianBergmann\ResourceOperations\ResourceOperations - */ -class ResourceOperationsTest extends TestCase -{ - /** - * @covers SebastianBergmann\ResourceOperations\ResourceOperations::getFunctions - */ - public function testGetFunctions() - { - $tab = ResourceOperations::getFunctions(); - $this->assertTrue(is_array($tab), 'ResourceOperations::getFunctions does not return an array'); - $this->assertContains('zip_open', $tab); - } -} -- cgit