1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# This file is part of GNU Mailutils -*- Autotest -*-
# Copyright (C) 2018 Free Software Foundation, Inc.
# License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
# This is free software: you are free to change and redistribute it.
# There is NO WARRANTY, to the extent permitted by law.
AT_SETUP([mu-mailbox-open exception])
AT_KEYWORDS([mailbox])
MU_GUILE_CHECK([
(catch 'mailutils-error
(lambda ()
(mu-mailbox-open "NONEXISTENT" "r"))
(lambda (key . rest)
(apply
(lambda (func fmt args syserr)
(apply format #t fmt args)
(newline))
rest)))],
[0],
[Cannot open default mailbox NONEXISTENT
])
AT_CLEANUP
|