mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 19:24:01 +02:00
[ticket/10011] Tests don't work on PHP < 5.3
Due to the usage of `__DIR__` for the file includes the tests can't be ran on systems with PHP < 5.3. Replace all occurances of `__DIR__` with `dirname(__FILE__)`. PHPBB3-10011
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
require_once __DIR__ . '/../../phpBB/includes/utf/utf_normalizer.php';
|
||||
require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_normalizer.php';
|
||||
|
||||
/**
|
||||
* @group slow
|
||||
@@ -16,8 +16,8 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
|
||||
{
|
||||
static public function setUpBeforeClass()
|
||||
{
|
||||
self::download('http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt', __DIR__.'/data');
|
||||
self::download('http://www.unicode.org/Public/UNIDATA/UnicodeData.txt', __DIR__.'/data');
|
||||
self::download('http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt', dirname(__FILE__).'/data');
|
||||
self::download('http://www.unicode.org/Public/UNIDATA/UnicodeData.txt', dirname(__FILE__).'/data');
|
||||
}
|
||||
|
||||
public function test_normalizer()
|
||||
@@ -62,7 +62,7 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
|
||||
|
||||
$tested_chars = array();
|
||||
|
||||
$fp = fopen(__DIR__.'/data/NormalizationTest.txt', 'rb');
|
||||
$fp = fopen(dirname(__FILE__).'/data/NormalizationTest.txt', 'rb');
|
||||
while (!feof($fp))
|
||||
{
|
||||
$line = fgets($fp);
|
||||
@@ -117,7 +117,7 @@ class phpbb_utf_normalizer_test extends phpbb_test_case
|
||||
*/
|
||||
public function test_invariants(array $tested_chars)
|
||||
{
|
||||
$fp = fopen(__DIR__.'/data/UnicodeData.txt', 'rb');
|
||||
$fp = fopen(dirname(__FILE__).'/data/UnicodeData.txt', 'rb');
|
||||
|
||||
while (!feof($fp))
|
||||
{
|
||||
|
Reference in New Issue
Block a user