mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: insert into the folder with trailing /
From database's point of view, "Drafts" and "Drafts/" are different folders Signed-off-by: Yuri Volchkov <yuri.volchkov@gmail.com> Amended: add test_subtest_known_broken (db)
This commit is contained in:
parent
dea75b5dd6
commit
cd8551d53a
1 changed files with 8 additions and 0 deletions
|
@ -132,6 +132,14 @@ output=$(notmuch search --output=files path:Drafts/new)
|
|||
dirname=$(dirname "$output")
|
||||
test_expect_equal "$dirname" "$MAIL_DIR/Drafts/new"
|
||||
|
||||
test_begin_subtest "Insert message into folder with trailing /"
|
||||
test_subtest_known_broken
|
||||
gen_insert_msg
|
||||
notmuch insert --folder=Drafts/ < "$gen_msg_filename"
|
||||
output=$(notmuch search --output=files id:${gen_msg_id})
|
||||
dirname=$(dirname "$output")
|
||||
test_expect_equal "$dirname" "$MAIL_DIR/Drafts/new"
|
||||
|
||||
test_begin_subtest "Insert message into folder, add/remove tags"
|
||||
gen_insert_msg
|
||||
notmuch insert --folder=Drafts +draft -unread < "$gen_msg_filename"
|
||||
|
|
Loading…
Reference in a new issue