mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
Merge branch 'develop-olympus' into develop
This merge commit includes ascraeus-specific renames and adjustments.
This commit is contained in:
commit
b5c8349f4a
22 changed files with 3 additions and 4 deletions
|
@ -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>
|
||||||
|
|
||||||
|
|
3
tests/cache/cache_test.php
vendored
3
tests/cache/cache_test.php
vendored
|
@ -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();
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue