diff options
author | Martin von Zweigbergk <martinvonz@gmail.com> | 2012-12-21 11:10:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-22 19:06:35 -0800 |
commit | 5d77298d084f01a854c8aecc1709acf53d956ef8 (patch) | |
tree | 4ead32901d2e113cd03fbf58a9685bc5beac7ec6 /t/t1505-rev-parse-last.sh | |
parent | Git 1.8.1-rc3 (diff) | |
download | tgif-5d77298d084f01a854c8aecc1709acf53d956ef8.tar.xz |
tests: move test_cmp_rev to test-lib-functions
A function for checking that two given parameters refer to the same
revision was defined in several places, so move the definition to
test-lib-functions.sh instead.
Signed-off-by: Martin von Zweigbergk <martinvonz@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1505-rev-parse-last.sh')
-rwxr-xr-x | t/t1505-rev-parse-last.sh | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/t/t1505-rev-parse-last.sh b/t/t1505-rev-parse-last.sh index d709ecf8df..4969edb314 100755 --- a/t/t1505-rev-parse-last.sh +++ b/t/t1505-rev-parse-last.sh @@ -32,32 +32,24 @@ test_expect_success 'setup' ' # # and 'side' should be the last branch -test_rev_equivalent () { - - git rev-parse "$1" > expect && - git rev-parse "$2" > output && - test_cmp expect output - -} - test_expect_success '@{-1} works' ' - test_rev_equivalent side @{-1} + test_cmp_rev side @{-1} ' test_expect_success '@{-1}~2 works' ' - test_rev_equivalent side~2 @{-1}~2 + test_cmp_rev side~2 @{-1}~2 ' test_expect_success '@{-1}^2 works' ' - test_rev_equivalent side^2 @{-1}^2 + test_cmp_rev side^2 @{-1}^2 ' test_expect_success '@{-1}@{1} works' ' - test_rev_equivalent side@{1} @{-1}@{1} + test_cmp_rev side@{1} @{-1}@{1} ' test_expect_success '@{-2} works' ' - test_rev_equivalent master @{-2} + test_cmp_rev master @{-2} ' test_expect_success '@{-3} fails' ' |