Added missing file for r74780
authorPriyanka Dhanda <pdhanda@users.mediawiki.org>
Thu, 14 Oct 2010 17:06:07 +0000 (17:06 +0000)
committerPriyanka Dhanda <pdhanda@users.mediawiki.org>
Thu, 14 Oct 2010 17:06:07 +0000 (17:06 +0000)
maintenance/tests/selenium/SimpleSeleniumConfig.php [new file with mode: 0644]

diff --git a/maintenance/tests/selenium/SimpleSeleniumConfig.php b/maintenance/tests/selenium/SimpleSeleniumConfig.php
new file mode 100644 (file)
index 0000000..48de1e2
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+class SimpleSeleniumConfig {
+       
+       public static function getSettings(&$includeFiles, &$globalConfigs) {
+               $includes = array(
+                       'skins/Chick.php'
+               );
+               $configs = array(
+                       'wgDefaultSkin' => 'chick'
+               );
+               $includeFiles = array_merge( $includeFiles, $includes );
+               $globalConfigs = array_merge( $globalConfigs, $configs);
+               return true; 
+       }
+}
\ No newline at end of file