Skip to content

Commit

Permalink
contrib/subtree: Add split tests
Browse files Browse the repository at this point in the history
Add tests to check various options to split.  Check combinations of
--prefix, --message, --annotate, --branch and --rejoin.

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>
  • Loading branch information
Techlive Zheng authored and Jeff King committed Nov 13, 2015
1 parent 4f96fcc commit 4fe2e33
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions contrib/subtree/t/t7900-subtree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ test_expect_success 'split requires path given by option --prefix must exist' '

test_expect_success 'check if --message works for split+rejoin' '
spl1=''"$(git subtree split --annotate='"'*'"' --prefix "sub dir" --onto FETCH_HEAD --message "Split & rejoin" --rejoin)"'' &&
git branch spl1 "$spl1" &&
check_equal ''"$(last_commit_message)"'' "Split & rejoin" &&
undo
'
Expand Down Expand Up @@ -282,7 +281,21 @@ test_expect_success 'check split with --branch for an incompatible branch' '
test_must_fail git subtree split --prefix "sub dir" --onto FETCH_HEAD --branch subdir
'

test_expect_success 'check split+rejoin' '
test_expect_success 'split sub dir/ with --rejoin' '
spl1=$(git subtree split --prefix="sub dir" --annotate="*") &&
git branch spl1 "$spl1" &&
git subtree split --prefix="sub dir" --annotate="*" --rejoin &&
check_equal "$(last_commit_message)" "Split '\''sub dir/'\'' into commit '\''$spl1'\''" &&
undo
'

test_expect_success 'split sub dir/ with --rejoin and --message' '
git subtree split --prefix="sub dir" --message="Split & rejoin" --annotate="*" --rejoin &&
check_equal "$(last_commit_message)" "Split & rejoin" &&
undo
'

test_expect_success 'check split+rejoin+onto' '
spl1=''"$(git subtree split --annotate='"'*'"' --prefix "sub dir" --onto FETCH_HEAD --message "Split & rejoin" --rejoin)"'' &&
undo &&
git subtree split --annotate='"'*'"' --prefix "sub dir" --onto FETCH_HEAD --rejoin &&
Expand Down

0 comments on commit 4fe2e33

Please sign in to comment.