Add failing test.

This commit is contained in:
Jonathan Puckey 2011-08-13 15:25:29 +02:00
parent 0154464fb3
commit adb5bfb560

View file

@ -196,4 +196,10 @@ test('Color#convert', function() {
equals(function() {
return converted.equals(color);
}, true);
});
test('Saturation from black rgb', function() {
equals(function() {
return new RGBColor(0, 0, 0).saturation == 0;
}, true);
});