diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
commit | 183851b06bd6c52f3cae5375f433da720d410447 (patch) | |
tree | a477257decbf3360127f6739c2f9d0ec57a03d39 /tests/LocalTestSettings.sample |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'tests/LocalTestSettings.sample')
-rw-r--r-- | tests/LocalTestSettings.sample | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/LocalTestSettings.sample b/tests/LocalTestSettings.sample new file mode 100644 index 00000000..7ada2fda --- /dev/null +++ b/tests/LocalTestSettings.sample @@ -0,0 +1,29 @@ +<?php +# This contains basic configuration values that are needed +# for RunTests.php. + +# Full path to the mediawiki source code you want to test +$IP = '/var/www/mediawiki-cvs'; + +# Now we add that path to the default include_path +ini_set('include_path',ini_get('include_path').':'.$IP); + +# Some options needed for database testing +$testOptions = array( + 'mysql3' => array( + 'server' => null, + 'user' => null, + 'password' => null, + 'database' => null ), + 'mysql4' => array( + 'server' => null, + 'user' => null, + 'password' => null, + 'database' => null ), + 'postgres' => array( + 'server' => null, + 'user' => null, + 'password' => null, + 'database' => null ), + ); +?> |