From 273fc5b5b61ad22af5a439c002afc626d8bb1b61 Mon Sep 17 00:00:00 2001 From: Pico88 Date: Sun, 24 Aug 2014 08:19:44 +0200 Subject: [ticket/12661] Add template test PHPBB3-12661 --- tests/extension/ext/vendor4/bar/composer.json | 23 ++++++++++++++++++++++ .../bar/styles/all/template/foobar_body.html | 1 + tests/extension/manager_test.php | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 tests/extension/ext/vendor4/bar/composer.json create mode 100644 tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html (limited to 'tests/extension') diff --git a/tests/extension/ext/vendor4/bar/composer.json b/tests/extension/ext/vendor4/bar/composer.json new file mode 100644 index 0000000000..1a2fddc3f4 --- /dev/null +++ b/tests/extension/ext/vendor4/bar/composer.json @@ -0,0 +1,23 @@ +{ + "name": "vendor4/bar", + "type": "phpbb-extension", + "description": "An example/sample extension to be used for testing purposes in phpBB Development.", + "version": "1.0.0", + "time": "2012-02-15 01:01:01", + "license": "GPL-2.0", + "authors": [{ + "name": "John Smith", + "email": "email@phpbb.com", + "homepage": "http://phpbb.com", + "role": "N/A" + }], + "require": { + "php": ">=5.3" + }, + "extra": { + "display-name": "phpBB Bar Extension", + "soft-require": { + "phpbb/phpbb": "3.1.*@dev" + } + } +} diff --git a/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html b/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html new file mode 100644 index 0000000000..0c147a92db --- /dev/null +++ b/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html @@ -0,0 +1 @@ +All folder \ No newline at end of file diff --git a/tests/extension/manager_test.php b/tests/extension/manager_test.php index 5ec8e60a68..5c7cad89f6 100644 --- a/tests/extension/manager_test.php +++ b/tests/extension/manager_test.php @@ -36,7 +36,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case public function test_all_available() { // barfoo and vendor3/bar should not listed due to missing composer.json. barfoo also has incorrect dir structure. - $this->assertEquals(array('vendor/moo', 'vendor2/bar', 'vendor2/foo', 'vendor3/foo'), array_keys($this->extension_manager->all_available())); + $this->assertEquals(array('vendor/moo', 'vendor2/bar', 'vendor2/foo', 'vendor3/foo', 'vendor4/bar'), array_keys($this->extension_manager->all_available())); } public function test_all_enabled() -- cgit v1.2.1 From 9d44c5d940a03599ad7a31bd9aafca7835d00214 Mon Sep 17 00:00:00 2001 From: Pico Date: Mon, 25 Aug 2014 22:35:55 +0200 Subject: [ticket/12661] Add new line at the end of files PHPBB3-12661 --- tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/extension') diff --git a/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html b/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html index 0c147a92db..c8f8cf957e 100644 --- a/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html +++ b/tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html @@ -1 +1 @@ -All folder \ No newline at end of file +All folder -- cgit v1.2.1