X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2Fsearch-date;fp=test%2Fsearch-date;h=0000000000000000000000000000000000000000;hp=70bcf344b4f76db35d9c1ccc13177018eb6b0287;hb=a755c9d6a9099366cc82ba3a4bee8e6d2b83d529;hpb=84719b08f757a6079f4c3331d0c476d19b265948 diff --git a/test/search-date b/test/search-date deleted file mode 100755 index 70bcf344..00000000 --- a/test/search-date +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash -test_description="date:since..until queries" -. ./test-lib.sh - -add_email_corpus - -test_begin_subtest "Absolute date range" -output=$(notmuch search date:2010-12-16..12/16/2010 | notmuch_search_sanitize) -test_expect_equal "$output" "thread:XXX 2010-12-16 [1/1] Olivier Berger; Essai accentué (inbox unread)" - -test_begin_subtest "Absolute time range with TZ" -notmuch search date:18-Nov-2009_02:19:26-0800..2009-11-18_04:49:52-06:00 | notmuch_search_sanitize > OUTPUT -cat <EXPECTED -thread:XXX 2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread) -thread:XXX 2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread) -thread:XXX 2009-11-18 [1/3] Carl Worth| Aron Griffis, Keith Packard; [notmuch] archive (inbox unread) -thread:XXX 2009-11-18 [1/2] Carl Worth| Keith Packard; [notmuch] [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (inbox unread) -EOF -test_expect_equal_file OUTPUT EXPECTED - -test_done