1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[ticket/12273] Move event exporter to namespace

PHPBB3-12273
This commit is contained in:
Joas Schilling
2014-04-18 11:13:02 +02:00
parent d213e09a40
commit 3352d9fd34
3 changed files with 40 additions and 40 deletions

View File

@@ -7,8 +7,6 @@
*
*/
require_once dirname(__FILE__) . '/../../phpBB/develop/event_exporter.php';
class phpbb_event_exporter_test extends phpbb_test_case
{
/** @var \event_exporter */
@@ -17,7 +15,7 @@ class phpbb_event_exporter_test extends phpbb_test_case
public function setUp()
{
parent::setUp();
$this->exporter = new \event_exporter(dirname(__FILE__) . '/fixtures/');
$this->exporter = new \phpbb\event\exporter(dirname(__FILE__) . '/fixtures/');
}
static public function crawl_php_file_data()
@@ -669,7 +667,7 @@ class phpbb_event_exporter_test extends phpbb_test_case
public function test_crawl_phpbb_directory_php()
{
global $phpbb_root_path;
$exporter = new \event_exporter($phpbb_root_path);
$exporter = new \phpbb\event\exporter($phpbb_root_path);
$this->assertGreaterThan(0, $exporter->crawl_phpbb_directory_php());
}
}