mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Merge pull request #1872 from nickvergessen/ticket/12017
Ticket/12017 Extension tests are broken on current develop
This commit is contained in:
commit
8fd1f90e5f
6 changed files with 7 additions and 21 deletions
|
@ -19,6 +19,8 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c
|
||||||
static protected $fixtures = array(
|
static protected $fixtures = array(
|
||||||
'foo/bar/config/',
|
'foo/bar/config/',
|
||||||
'foo/bar/controller/',
|
'foo/bar/controller/',
|
||||||
|
'foo/bar/event/',
|
||||||
|
'foo/bar/language/en/',
|
||||||
'foo/bar/styles/prosilver/template/',
|
'foo/bar/styles/prosilver/template/',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,9 @@ class phpbb_functional_extension_global_lang_test extends phpbb_functional_test_
|
||||||
static private $helper;
|
static private $helper;
|
||||||
|
|
||||||
static protected $fixtures = array(
|
static protected $fixtures = array(
|
||||||
'foo/bar/language/en/',
|
'foo/bar/config/',
|
||||||
'foo/bar/event/',
|
'foo/bar/event/',
|
||||||
|
'foo/bar/language/en/',
|
||||||
);
|
);
|
||||||
|
|
||||||
static public function setUpBeforeClass()
|
static public function setUpBeforeClass()
|
||||||
|
|
|
@ -17,8 +17,9 @@ class phpbb_functional_extension_permission_lang_test extends phpbb_functional_t
|
||||||
static private $helper;
|
static private $helper;
|
||||||
|
|
||||||
static protected $fixtures = array(
|
static protected $fixtures = array(
|
||||||
'foo/bar/language/en/',
|
'foo/bar/config/',
|
||||||
'foo/bar/event/',
|
'foo/bar/event/',
|
||||||
|
'foo/bar/language/en/',
|
||||||
);
|
);
|
||||||
|
|
||||||
static public function setUpBeforeClass()
|
static public function setUpBeforeClass()
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
}],
|
}],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3",
|
"php": ">=5.3",
|
||||||
"phpbb": "3.1.*@dev"
|
"phpbb/phpbb": "3.1.*@dev"
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"display-name": "phpBB 3.1 Extension Testing"
|
"display-name": "phpBB 3.1 Extension Testing"
|
||||||
|
|
|
@ -10,15 +10,6 @@
|
||||||
|
|
||||||
namespace foo\bar\event;
|
namespace foo\bar\event;
|
||||||
|
|
||||||
/**
|
|
||||||
* @ignore
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!defined('IN_PHPBB'))
|
|
||||||
{
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event listener
|
* Event listener
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,15 +10,6 @@
|
||||||
|
|
||||||
namespace foo\bar\event;
|
namespace foo\bar\event;
|
||||||
|
|
||||||
/**
|
|
||||||
* @ignore
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!defined('IN_PHPBB'))
|
|
||||||
{
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event listener
|
* Event listener
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue