diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-03-24 16:24:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-24 16:24:13 -0700 |
commit | 0476228de500049804ae599f557658c3f9042ad0 (patch) | |
tree | 4c9185465412afb414bdfb5688f1f804ba3d9fc4 /t | |
parent | bcbbe4f9d9afa025024f18a474d11bfec32e3207 (diff) | |
parent | 8b124135a97b593d50a90abcec231552b31c7ade (diff) | |
download | git-0476228de500049804ae599f557658c3f9042ad0.tar.gz git-0476228de500049804ae599f557658c3f9042ad0.tar.xz |
Merge branch 'jc/color-attrs' into maint
* jc/color-attrs:
color: allow multiple attributes
Diffstat (limited to 't')
-rwxr-xr-x | t/t4026-color.sh | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/t/t4026-color.sh b/t/t4026-color.sh index 5ade44c04..d5ccdd0cf 100755 --- a/t/t4026-color.sh +++ b/t/t4026-color.sh @@ -8,14 +8,13 @@ test_description='Test diff/status color escape codes' color() { - git config diff.color.new "$1" && - test "`git config --get-color diff.color.new`" = "$2" + actual=$(git config --get-color no.such.slot "$1") && + test "$actual" = "$2" } invalid_color() { - git config diff.color.new "$1" && - test -z "`git config --get-color diff.color.new 2>/dev/null`" + test_must_fail git config --get-color no.such.slot "$1" } test_expect_success 'reset' ' @@ -42,6 +41,14 @@ test_expect_success 'fg bg attr' ' color "blue red ul" "[4;34;41m" ' +test_expect_success 'fg bg attr...' ' + color "blue bold dim ul blink reverse" "[1;2;4;5;7;34m" +' + +test_expect_success 'long color specification' ' + color "254 255 bold dim ul blink reverse" "[1;2;4;5;7;38;5;254;48;5;255m" +' + test_expect_success '256 colors' ' color "254 bold 255" "[1;38;5;254;48;5;255m" ' |