summaryrefslogtreecommitdiff
path: root/tests/LocalTestSettings.sample
blob: 7ada2fda9113d141bc0a39e901cc0116219e91b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 ),
    );
?>