repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix for r47482: put the RELEASE-NOTES entry in the "bug fixes" section and not the...
[mediawiki.git]
/
t
/
inc
/
Search.t
blob
2f06dcd9fe2943a2dd90dab6025262b5e4db735b
1
#!/usr/bin/env php
2
<
?php
3
4
require
't/Search.inc'
;
5
6
$db
=
buildTestDatabase
(
array
(
'page'
,
'revision'
,
'text'
,
'searchindex'
) );
7
if
(
is_null
(
$db
) ){
8
fail
(
'no db'
);
9
exit
();
10
}
11
$t
=
new
SearchEngineTest
(
new
SearchMySQL
(
$db
) );
12
$t
->
run
();
13
14
/* vim: set filetype=php: */