mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/12963] Remove old migration/ folder from tests
PHPBB3-12963
This commit is contained in:
parent
c220fa89a1
commit
5ce61e8c3a
4 changed files with 3 additions and 63 deletions
|
@ -1,18 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* This file is part of the phpBB Forum Software package.
|
|
||||||
*
|
|
||||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
||||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
||||||
*
|
|
||||||
* For full copyright and license information, please see
|
|
||||||
* the docs/CREDITS.txt file.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vendor2\bar\migration;
|
|
||||||
|
|
||||||
class migration extends \phpbb\db\migration\migration
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* This file is part of the phpBB Forum Software package.
|
|
||||||
*
|
|
||||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
||||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
||||||
*
|
|
||||||
* For full copyright and license information, please see
|
|
||||||
* the docs/CREDITS.txt file.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vendor2\foo\migrations;
|
|
||||||
|
|
||||||
class migration extends \phpbb\db\migration\migration
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* This file is part of the phpBB Forum Software package.
|
|
||||||
*
|
|
||||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
||||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
||||||
*
|
|
||||||
* For full copyright and license information, please see
|
|
||||||
* the docs/CREDITS.txt file.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vendor3\bar\migration;
|
|
||||||
|
|
||||||
class migration extends \phpbb\db\migration\migration
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -16,6 +16,9 @@ class phpbb_extension_extension_base_test extends phpbb_test_case
|
||||||
{
|
{
|
||||||
protected static $reflection_method_get_migration_file_list;
|
protected static $reflection_method_get_migration_file_list;
|
||||||
|
|
||||||
|
/** @var phpbb_mock_extension_manager */
|
||||||
|
protected $extension_manager;
|
||||||
|
|
||||||
public static function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
@ -56,18 +59,9 @@ class phpbb_extension_extension_base_test extends phpbb_test_case
|
||||||
public function data_test_suffix_get_classes()
|
public function data_test_suffix_get_classes()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array(
|
|
||||||
'vendor3/bar',
|
|
||||||
array('\vendor3\bar\migration\migration'),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'vendor2/foo',
|
|
||||||
array('\vendor2\foo\migrations\migration'),
|
|
||||||
),
|
|
||||||
array(
|
array(
|
||||||
'vendor2/bar',
|
'vendor2/bar',
|
||||||
array(
|
array(
|
||||||
'\vendor2\bar\migration\migration',
|
|
||||||
'\vendor2\bar\migrations\migration',
|
'\vendor2\bar\migrations\migration',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Reference in a new issue