2 ######################################################
4 # Test the creation and removal of a folder.
6 ######################################################
8 if test -z "${MH_OBJ_DIR}"; then
9 srcdir=`dirname "$0"`/../..
10 MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
13 . "$MH_OBJ_DIR/test/common.sh"
17 folder -create +testfolder > /dev/null
18 if [ ! -d "$MH_TEST_DIR/Mail/testfolder" ]; then
22 rmf +testfolder > /dev/null
23 if [ -d "$MH_TEST_DIR/Mail/testfolder" ]; then