aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-02-02 18:33:53 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-02-02 18:33:53 +0100
commitb53fd867be7db3bf8025a94893c4211b99fbd21e (patch)
tree8c7c430676173d82ae1ea7018dddad852e92a116
parenta93df0e5112962503abc88469c1cc77cef862745 (diff)
downloadforums-b53fd867be7db3bf8025a94893c4211b99fbd21e.tar
forums-b53fd867be7db3bf8025a94893c4211b99fbd21e.tar.gz
forums-b53fd867be7db3bf8025a94893c4211b99fbd21e.tar.bz2
forums-b53fd867be7db3bf8025a94893c4211b99fbd21e.tar.xz
forums-b53fd867be7db3bf8025a94893c4211b99fbd21e.zip
[ticket/13568] Add more test cases for imagick path
PHPBB3-13568
-rw-r--r--tests/functional/acp_attachments_test.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functional/acp_attachments_test.php b/tests/functional/acp_attachments_test.php
index 6b1d1dc8df..9f6b61ccd7 100644
--- a/tests/functional/acp_attachments_test.php
+++ b/tests/functional/acp_attachments_test.php
@@ -21,8 +21,10 @@ class phpbb_functional_acp_attachments_test extends phpbb_functional_test_case
return array(
array('/usr/bin', 'Configuration updated successfully'),
array('/usr/bin/', 'Configuration updated successfully'),
+ array('C:\Windows\system32', 'The entered path “C:\Windows\system32” does not exist.'),
array('/usr/nope', 'The entered path “/usr/nope” does not exist.'),
array('mkdir /usr/test', 'The entered path “mkdir /usr/test” does not exist.'),
+ array('/usr/bin/which', 'The entered path “/usr/bin/which” is not a directory.'),
);
}