From 8ba4964facb0fd41ff967a3af31faa1fb30d1a89 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 7 Nov 2013 17:57:46 +0100 Subject: [PATCH] Move files with tests to reflect the code Change-Id: I7949457fb1ad056dc3db09b43ecf73bc8a61d5a8 --- tests/phpunit/includes/{ => utils}/CdbTest.php | 0 tests/phpunit/includes/{ => utils}/HashRingTest.php | 0 tests/phpunit/includes/{ => utils}/IPTest.php | 0 tests/phpunit/includes/{ => utils}/StringUtilsTest.php | 0 tests/phpunit/includes/{ => utils}/UIDGeneratorTest.php | 0 tests/phpunit/includes/{ => utils}/ZipDirectoryReaderTest.php | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename tests/phpunit/includes/{ => utils}/CdbTest.php (100%) rename tests/phpunit/includes/{ => utils}/HashRingTest.php (100%) rename tests/phpunit/includes/{ => utils}/IPTest.php (100%) rename tests/phpunit/includes/{ => utils}/StringUtilsTest.php (100%) rename tests/phpunit/includes/{ => utils}/UIDGeneratorTest.php (100%) rename tests/phpunit/includes/{ => utils}/ZipDirectoryReaderTest.php (98%) diff --git a/tests/phpunit/includes/CdbTest.php b/tests/phpunit/includes/utils/CdbTest.php similarity index 100% rename from tests/phpunit/includes/CdbTest.php rename to tests/phpunit/includes/utils/CdbTest.php diff --git a/tests/phpunit/includes/HashRingTest.php b/tests/phpunit/includes/utils/HashRingTest.php similarity index 100% rename from tests/phpunit/includes/HashRingTest.php rename to tests/phpunit/includes/utils/HashRingTest.php diff --git a/tests/phpunit/includes/IPTest.php b/tests/phpunit/includes/utils/IPTest.php similarity index 100% rename from tests/phpunit/includes/IPTest.php rename to tests/phpunit/includes/utils/IPTest.php diff --git a/tests/phpunit/includes/StringUtilsTest.php b/tests/phpunit/includes/utils/StringUtilsTest.php similarity index 100% rename from tests/phpunit/includes/StringUtilsTest.php rename to tests/phpunit/includes/utils/StringUtilsTest.php diff --git a/tests/phpunit/includes/UIDGeneratorTest.php b/tests/phpunit/includes/utils/UIDGeneratorTest.php similarity index 100% rename from tests/phpunit/includes/UIDGeneratorTest.php rename to tests/phpunit/includes/utils/UIDGeneratorTest.php diff --git a/tests/phpunit/includes/ZipDirectoryReaderTest.php b/tests/phpunit/includes/utils/ZipDirectoryReaderTest.php similarity index 98% rename from tests/phpunit/includes/ZipDirectoryReaderTest.php rename to tests/phpunit/includes/utils/ZipDirectoryReaderTest.php index 2627a41727..f0203d460a 100644 --- a/tests/phpunit/includes/ZipDirectoryReaderTest.php +++ b/tests/phpunit/includes/utils/ZipDirectoryReaderTest.php @@ -10,7 +10,7 @@ class ZipDirectoryReaderTest extends MediaWikiTestCase { protected function setUp() { parent::setUp(); - $this->zipDir = __DIR__ . '/../data/zip'; + $this->zipDir = __DIR__ . '/../../data/zip'; } function zipCallback( $entry ) { -- 2.20.1