diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-05-10 11:53:26 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-05-10 13:54:15 +0200 |
commit | 6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04 (patch) | |
tree | b6829c5ec261379d28518a68171c225060fbfde1 /tests/extension/ext | |
parent | 7240759e34d4e67fbce632c03ae6818aad36a07c (diff) | |
download | forums-6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04.tar forums-6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04.tar.gz forums-6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04.tar.bz2 forums-6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04.tar.xz forums-6a1fa3e0f40d1ce63ff8686b47bd131417d9fc04.zip |
[ticket/11465] Add comments explaining the tests
PHPBB3-11465
Diffstat (limited to 'tests/extension/ext')
-rw-r--r-- | tests/extension/ext/foo/acp/fail_info.php | 5 | ||||
-rw-r--r-- | tests/extension/ext/foo/acp/fail_module.php | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/tests/extension/ext/foo/acp/fail_info.php b/tests/extension/ext/foo/acp/fail_info.php index 98b0eb9529..99aa09551e 100644 --- a/tests/extension/ext/foo/acp/fail_info.php +++ b/tests/extension/ext/foo/acp/fail_info.php @@ -1,5 +1,8 @@ <?php - +/* +* Due to the mismatch between the class name and the file name, this module +* file shouldn't be found by the extension finder +*/ class phpbb_ext_foo_acp_foo_info { public function module() diff --git a/tests/extension/ext/foo/acp/fail_module.php b/tests/extension/ext/foo/acp/fail_module.php index dd16955418..a200d92d2f 100644 --- a/tests/extension/ext/foo/acp/fail_module.php +++ b/tests/extension/ext/foo/acp/fail_module.php @@ -1,5 +1,8 @@ <?php - +/* +* Due to the mismatch between the class name and the file name of the module +* info file, this module's info file shouldn't be found +*/ class phpbb_ext_foo_acp_fail_module { } |