Remove tests with getenv() since it does not seem to be reliable across different testing environments

This commit is contained in:
Pierre Rudloff 2017-05-30 23:59:15 +02:00
parent 6087e90b67
commit 4aba4d5bfd
1 changed files with 5 additions and 4 deletions

View File

@ -96,8 +96,6 @@ class LocaleMiddlewareTest extends \PHPUnit_Framework_TestCase
function () {
}
);
$this->assertEquals('fr_FR', getenv('LANG'));
$this->assertEquals('fr_FR', setlocale(LC_ALL, null));
}
/**
@ -114,7 +112,10 @@ class LocaleMiddlewareTest extends \PHPUnit_Framework_TestCase
function () {
}
);
$this->assertEquals('en_US', getenv('LANG'));
$this->assertEquals('en_US', setlocale(LC_ALL, null));
}
public function testEnv()
{
$this->markTestIncomplete('We need to find a way to reliably test LC_ALL and LANG values');
}
}