about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-06-14 00:14:46 +0000
committerEric Wong <e@80x24.org>2017-06-14 00:15:44 +0000
commit7eeadcb62729b0efbcb53cd9b7b181897c92cf9a (patch)
treeb0201fd1678f0b53b8ff26e665d8a6f78390534f /t
parente772b371ea15d5903720a00c7c24b535e781b4bf (diff)
downloadpublic-inbox-7eeadcb62729b0efbcb53cd9b7b181897c92cf9a.tar.gz
This simplifies the code a bit and reduces the translation
overhead for looking directly at data from tools shipped
with Xapian.

While we're at it, fix thread-all.t :)
Diffstat (limited to 't')
-rw-r--r--t/search.t9
1 files changed, 1 insertions, 8 deletions
diff --git a/t/search.t b/t/search.t
index c9c4e346..a75dc9b5 100644
--- a/t/search.t
+++ b/t/search.t
@@ -95,15 +95,8 @@ sub filter_mids {
         is($found->mid, 'root@s', 'mid set correctly');
         ok(int($found->thread_id) > 0, 'thread_id is an integer');
 
+        my ($res, @res);
         my @exp = sort qw(root@s last@s);
-        my $res = $ro->query("path:hello_world");
-        my @res = filter_mids($res);
-        is_deeply(\@res, \@exp, 'got expected results for path: match');
-
-        foreach my $p (qw(hello hello_ hello_world2 hello_world_)) {
-                $res = $ro->query("path:$p");
-                is($res->{total}, 0, "path variant `$p' does not match");
-        }
 
         $res = $ro->query('s:(Hello world)');
         @res = filter_mids($res);