diff options
author | Techlive Zheng <techlivezheng@gmail.com> | 2015-11-12 20:32:31 -0600 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2015-11-13 00:02:56 -0500 |
commit | a686701184bc9e3d54b2870455f3ff276360299e (patch) | |
tree | 81eed79cfd79b289b473198a9862185da27df997 /contrib/subtree/t | |
parent | contrib/subtree: Clean and refactor test code (diff) | |
download | tgif-a686701184bc9e3d54b2870455f3ff276360299e.tar.xz |
contrib/subtree: Add test for missing subtree
Test that a merge from a non-existant subtree fails.
Signed-off-by: Techlive Zheng <techlivezheng@gmail.com>
Signed-off-by: David A. Greene <greened@obbligato.org>
Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'contrib/subtree/t')
-rwxr-xr-x | contrib/subtree/t/t7900-subtree.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/subtree/t/t7900-subtree.sh b/contrib/subtree/t/t7900-subtree.sh index f9dda3d6f9..4471786f50 100755 --- a/contrib/subtree/t/t7900-subtree.sh +++ b/contrib/subtree/t/t7900-subtree.sh @@ -123,6 +123,10 @@ test_expect_success 'no pull from non-existant subtree' ' test_must_fail git subtree pull --prefix="sub dir" ./"sub proj" sub1 ' +test_expect_success 'no merge from non-existent subtree' ' + test_must_fail git subtree merge --prefix="sub dir" FETCH_HEAD +' + test_expect_success 'check if --message works for add' ' git subtree add --prefix="sub dir" --message="Added subproject" sub1 && check_equal ''"$(last_commit_message)"'' "Added subproject" && |