Add test for bright colors

pull/22/head
Dominik Ritter 6 years ago
parent e0630d7573
commit a0d57bc455

@ -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

Loading…
Cancel
Save