mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: test notmuch insert --folder=""
Test insert into top level folder.
This commit is contained in:
parent
733ccfabca
commit
cf08295c50
1 changed files with 7 additions and 0 deletions
|
@ -132,6 +132,13 @@ 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 top level folder"
|
||||
gen_insert_msg
|
||||
notmuch insert --folder="" < "$gen_msg_filename"
|
||||
output=$(notmuch search --output=files id:${gen_msg_id})
|
||||
dirname=$(dirname "$output")
|
||||
test_expect_equal "$dirname" "$MAIL_DIR/new"
|
||||
|
||||
test_begin_subtest "Insert message into folder with trailing /"
|
||||
gen_insert_msg
|
||||
notmuch insert --folder=Drafts/ < "$gen_msg_filename"
|
||||
|
|
Loading…
Reference in a new issue