diff options
Diffstat (limited to 'tests/t0050-mv-tests.sh')
-rwxr-xr-x | tests/t0050-mv-tests.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/t0050-mv-tests.sh b/tests/t0050-mv-tests.sh new file mode 100755 index 0000000..65d2c7e --- /dev/null +++ b/tests/t0050-mv-tests.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +test_description='Test mv' +. ./setup.sh + +export TEST_CRED="test_cred" +export TEST_CRED_NEW="test_cred_new" + +test_expect_success 'Test "mv" command' ' + pass_init && + create_cred "${TEST_CRED}" && + echo "Moving $TEST_CRED to $TEST_CRED_NEW" && + ${PASS} mv "${TEST_CRED}" "${TEST_CRED_NEW}" && + check_cred "${TEST_CRED_NEW}" && + check_no_cred "${TEST_CRED}" +' + +test_done |