Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-05-14 17:16:53 +0400
committerMichal Čihař <mcihar@suse.cz>2012-05-14 17:16:53 +0400
commit82562d8e7dd786a01a4af3cff0c9731deec0563b (patch)
tree20368423bc055ab6463842f9a3dd4be9de3a77a5 /test
parentcfc3cef521400b6eb17adc18ff65a69798df324b (diff)
Add some contemporary browsers
Diffstat (limited to 'test')
-rw-r--r--test/classes/PMA_Config_test.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/classes/PMA_Config_test.php b/test/classes/PMA_Config_test.php
index b005f3cdcf..4118441603 100644
--- a/test/classes/PMA_Config_test.php
+++ b/test/classes/PMA_Config_test.php
@@ -145,6 +145,21 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase
'MOZILLA',
'5.0',
),
+ /**
+ * @todo Is this version really expected?
+ */
+ array(
+ 'Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0',
+ 'Linux',
+ 'MOZILLA',
+ '5.0',
+ ),
+ array(
+ 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.4+ (KHTML, like Gecko) Version/5.0 Safari/535.4+ SUSE/12.1 (3.2.1) Epiphany/3.2.1',
+ 'Linux',
+ 'SAFARI',
+ '5.0.535',
+ ),
);
}