diff options
author | Olga Telezhnaya <olyatelezhnaya@gmail.com> | 2018-12-24 14:24:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-28 19:08:11 +0100 |
commit | 5610d9ff0d04de8a2d685957e6dd9db911930b00 (patch) | |
tree | a3a51ad2d8fd53a6628c9f446427d7ed7de3f896 /t/t6300-for-each-ref.sh | |
parent | ref-filter: add deltabase option (diff) | |
download | git-5610d9ff0d04de8a2d685957e6dd9db911930b00.tar.xz git-5610d9ff0d04de8a2d685957e6dd9db911930b00.zip |
ref-filter: add tests for deltabase
Test new formatting option deltabase.
Signed-off-by: Olga Telezhnaia <olyatelezhnaya@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6300-for-each-ref.sh')
-rwxr-xr-x | t/t6300-for-each-ref.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh index 097fdf21fe..0ffd630713 100755 --- a/t/t6300-for-each-ref.sh +++ b/t/t6300-for-each-ref.sh @@ -84,6 +84,7 @@ test_atom head push:strip=-1 master test_atom head objecttype commit test_atom head objectsize 171 test_atom head objectsize:disk 138 +test_atom head deltabase 0000000000000000000000000000000000000000 test_atom head objectname $(git rev-parse refs/heads/master) test_atom head objectname:short $(git rev-parse --short refs/heads/master) test_atom head objectname:short=1 $(git rev-parse --short=1 refs/heads/master) @@ -127,6 +128,8 @@ test_atom tag objecttype tag test_atom tag objectsize 154 test_atom tag objectsize:disk 138 test_atom tag '*objectsize:disk' 138 +test_atom tag deltabase 0000000000000000000000000000000000000000 +test_atom tag '*deltabase' 0000000000000000000000000000000000000000 test_atom tag objectname $(git rev-parse refs/tags/testtag) test_atom tag objectname:short $(git rev-parse --short refs/tags/testtag) test_atom head objectname:short=1 $(git rev-parse --short=1 refs/heads/master) |