Add test for bright colors

This commit is contained in:
Dominik Ritter 2018-08-09 08:11:19 +02:00
parent e0630d7573
commit a0d57bc455

View file

@ -38,5 +38,14 @@ function testIsSameColorDoesNotYieldNotEqualColorsTruthy() {
assertFalse "isSameColor 'green' '003'" assertFalse "isSameColor 'green' '003'"
} }
function testBrightColorsWork() {
# We had some code in the past that equalized bright colors
# with normal ones. This code is now gone, and this test should
# ensure that all input channels for bright colors are handled
# correctly.
assertTrue "isSameColor 'cyan' '014'"
assertEquals '014' "$(getColorCode 'cyan')"
assertEquals '014' "$(getColor 'cyan')"
}
source shunit2/shunit2 source shunit2/shunit2