Merge branch 'develop-olympus' into develop

This merge commit includes ascraeus-specific renames and adjustments.
This commit is contained in:
Igor Wiedler 2011-01-10 00:26:48 +01:00
commit b5c8349f4a
22 changed files with 3 additions and 4 deletions

View file

@ -13,7 +13,7 @@
> >
<testsuites> <testsuites>
<testsuite name="phpBB Test Suite"> <testsuite name="phpBB Test Suite">
<directory suffix=".php">./tests/</directory> <directory suffix="_test.php">./tests/</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>

View file

@ -25,9 +25,6 @@ class phpbb_cache_test extends phpbb_test_case
public function test_cache_driver_file() public function test_cache_driver_file()
{ {
global $phpEx;
$phpEx = 'txt'; // do not store files as .php
$driver = new phpbb_cache_driver_file(__DIR__ . '/tmp/'); $driver = new phpbb_cache_driver_file(__DIR__ . '/tmp/');
$driver->put('test_key', 'test_value'); $driver->put('test_key', 'test_value');
$driver->save(); $driver->save();

View file

@ -39,6 +39,8 @@ class phpbb_template_template_test extends phpbb_test_case
protected function setUp() protected function setUp()
{ {
$this->markTestIncomplete("template::display raises notices.");
// Test the engine can be used // Test the engine can be used
$this->setup_engine(); $this->setup_engine();