* (bug 5277) Use audio/midi rather that audio/mid
[lhc/web/wiklou.git] / tests / LocalTestSettings.sample
1 <?php
2 # This contains basic configuration values that are needed
3 # for RunTests.php.
4
5 # Full path to the mediawiki source code you want to test
6 $IP = '/var/www/mediawiki-cvs';
7
8 # Now we add that path to the default include_path
9 ini_set('include_path',ini_get('include_path').':'.$IP);
10
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 'postgresql' => array(
24 'server' => null,
25 'user' => null,
26 'password' => null,
27 'database' => null ),
28 );
29 ?>