mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
CLI/show: tests for the new --sort option
New unit tests for notmuch show --sort, covering the basic use cases.
This commit is contained in:
parent
8316fc3ca1
commit
13d49b8e16
1 changed files with 17 additions and 0 deletions
|
@ -10,4 +10,21 @@ notmuch show foo..
|
|||
exit_code=$?
|
||||
test_expect_equal 1 $exit_code
|
||||
|
||||
test_begin_subtest "notmuch show --sort=newest-first"
|
||||
notmuch show --entire-thread=true '*' > EXPECTED
|
||||
notmuch show --entire-thread=true --sort=newest-first '*' > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "notmuch show --sort=oldest-first"
|
||||
notmuch show --entire-thread=true '*' | grep ^depth:0 > EXPECTED
|
||||
notmuch show --entire-thread=true --sort=oldest-first '*' | grep ^depth:0 > OLDEST
|
||||
perl -e 'print reverse<>' OLDEST > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "notmuch show --sort for single thread"
|
||||
QUERY="id:yun1vjwegii.fsf@aiko.keithp.com"
|
||||
notmuch show --entire-thread=true --sort=newest-first $QUERY > EXPECTED
|
||||
notmuch show --entire-thread=true --sort=oldest-first $QUERY > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_done
|
||||
|
|
Loading…
Reference in a new issue