File: TestConfig.pm

package info (click to toggle)
libwiki-toolkit-perl 0.86-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid
  • size: 908 kB
  • sloc: perl: 4,588; sh: 45; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%Wiki::Toolkit::TestConfig::config = (
                                       'search_invertedindex' => 0,
                                       'plucene' => 0,
                                       'Pg' => {
                                                 'dbname' => undef
                                               },
                                       'dbixfts' => undef,
                                       'MySQL' => {
                                                    'dbname' => undef
                                                  },
                                       'SQLite' => {
                                                     'dbname' => 't/sqlite-test.db'
                                                   }
                                     );
$Wiki::Toolkit::TestConfig::configured = 1;
1;