about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-09-09 00:01:23 +0000
committerEric Wong <e@80x24.org>2016-09-09 00:02:17 +0000
commit766d9b1ef9e2e2c325c5dae9d17bfeb85c9d2f93 (patch)
tree8477bef287cb6cd48eb266a8b47a196a5685eaa0 /t
parentc617254e00ae43414236603cf9bbcdc8cbc2b139 (diff)
downloadpublic-inbox-766d9b1ef9e2e2c325c5dae9d17bfeb85c9d2f93.tar.gz
We only document the "s:" anyways.  While the long name is more
descriptive, the ambiguity makes agnostic caching (by Varnish or
similar) slightly harder and longer URLs are more likely to be
accidentally truncated when shared.
Diffstat (limited to 't')
-rw-r--r--t/search.t14
1 files changed, 7 insertions, 7 deletions
diff --git a/t/search.t b/t/search.t
index bb0861a1..7abaf832 100644
--- a/t/search.t
+++ b/t/search.t
@@ -123,19 +123,19 @@ sub filter_mids {
                 is($res->{total}, 0, "path variant `$p' does not match");
         }
 
-        $res = $ro->query('subject:(Hello world)');
+        $res = $ro->query('s:(Hello world)');
         @res = filter_mids($res);
-        is_deeply(\@res, \@exp, 'got expected results for subject:() match');
+        is_deeply(\@res, \@exp, 'got expected results for s:() match');
 
-        $res = $ro->query('subject:"Hello world"');
+        $res = $ro->query('s:"Hello world"');
         @res = filter_mids($res);
-        is_deeply(\@res, \@exp, 'got expected results for subject:"" match');
+        is_deeply(\@res, \@exp, 'got expected results for s:"" match');
 
-        $res = $ro->query('subject:"Hello world"', {limit => 1});
+        $res = $ro->query('s:"Hello world"', {limit => 1});
         is(scalar @{$res->{msgs}}, 1, "limit works");
         my $first = $res->{msgs}->[0];
 
-        $res = $ro->query('subject:"Hello world"', {offset => 1});
+        $res = $ro->query('s:"Hello world"', {offset => 1});
         is(scalar @{$res->{msgs}}, 1, "offset works");
         my $second = $res->{msgs}->[0];
 
@@ -181,7 +181,7 @@ sub filter_mids {
         $rw_commit->();
         $ro->reopen;
 
-        # Subject:
+        # subject
         my $res = $ro->query('ghost');
         my @exp = sort qw(ghost-message@s ghost-reply@s);
         my @res = filter_mids($res);