mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
clean up "compare thread ids" python test
This makes the test script open the database in READ_ONLY mode and use the libraries own sorting methods instead of "sort".
This commit is contained in:
parent
228d8c0528
commit
aadf202dd5
1 changed files with 4 additions and 3 deletions
|
@ -7,11 +7,12 @@ add_email_corpus
|
|||
test_begin_subtest "compare thread ids"
|
||||
test_python <<EOF
|
||||
import notmuch
|
||||
db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE)
|
||||
db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
|
||||
q_new = notmuch.Query(db, 'tag:inbox')
|
||||
q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
|
||||
for t in q_new.search_threads():
|
||||
print t.get_thread_id()
|
||||
EOF
|
||||
notmuch search --output=threads tag:inbox | sed s/^thread:// | sort > EXPECTED
|
||||
test_expect_equal_file <(sort OUTPUT) EXPECTED
|
||||
notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
|
||||
test_expect_equal_file OUTPUT EXPECTED
|
||||
test_done
|
||||
|
|
Loading…
Reference in a new issue