* API: All pages list
[mediawiki.git] / tests / LocalTestSettings.sample
blob7ada2fda9113d141bc0a39e901cc0116219e91b2
1 <?php
2 # This contains basic configuration values that are needed
3 # for RunTests.php.
5 # Full path to the mediawiki source code you want to test
6 $IP = '/var/www/mediawiki-cvs';
8 # Now we add that path to the default include_path
9 ini_set('include_path',ini_get('include_path').':'.$IP);
11 # Some options needed for database testing
12 $testOptions = array(
13     'mysql3' => array(
14         'server' => null,
15         'user' => null,
16         'password' => null,
17         'database' => null ),
18     'mysql4' => array(
19         'server' => null,
20         'user' => null,
21         'password' => null,
22         'database' => null ),
23     'postgres' => array(
24         'server' => null,
25         'user' => null,
26         'password' => null,
27         'database' => null ),
28     );