mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
test: ruby: simplify output comparison
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
faf5511c3e
commit
ac64de450a
1 changed files with 4 additions and 4 deletions
|
@ -20,22 +20,22 @@ test_ruby() {
|
||||||
}
|
}
|
||||||
|
|
||||||
test_begin_subtest "compare thread ids"
|
test_begin_subtest "compare thread ids"
|
||||||
notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
|
notmuch search --sort=oldest-first --output=threads tag:inbox > EXPECTED
|
||||||
test_ruby <<"EOF"
|
test_ruby <<"EOF"
|
||||||
q = db.query('tag:inbox')
|
q = db.query('tag:inbox')
|
||||||
q.sort = Notmuch::SORT_OLDEST_FIRST
|
q.sort = Notmuch::SORT_OLDEST_FIRST
|
||||||
q.search_threads.each do |t|
|
q.search_threads.each do |t|
|
||||||
puts t.thread_id
|
puts 'thread:%s' % t.thread_id
|
||||||
end
|
end
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_begin_subtest "compare message ids"
|
test_begin_subtest "compare message ids"
|
||||||
notmuch search --sort=oldest-first --output=messages tag:inbox | sed s/^id:// > EXPECTED
|
notmuch search --sort=oldest-first --output=messages tag:inbox > EXPECTED
|
||||||
test_ruby <<"EOF"
|
test_ruby <<"EOF"
|
||||||
q = db.query('tag:inbox')
|
q = db.query('tag:inbox')
|
||||||
q.sort = Notmuch::SORT_OLDEST_FIRST
|
q.sort = Notmuch::SORT_OLDEST_FIRST
|
||||||
q.search_messages.each do |m|
|
q.search_messages.each do |m|
|
||||||
puts m.message_id
|
puts 'id:%s' % m.message_id
|
||||||
end
|
end
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue