summaryrefslogtreecommitdiff
path: root/t/inc/Search.t
blob: 2f06dcd9fe2943a2dd90dab6025262b5e4db735b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env php
<?php

require 't/Search.inc';

$db = buildTestDatabase( array( 'page', 'revision', 'text', 'searchindex' ) );
if( is_null( $db ) ){
	fail( 'no db' );
	exit();
}
$t = new SearchEngineTest( new SearchMySQL( $db ) );
$t->run();

/* vim: set filetype=php: */