summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_moresaturation.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_color_moresaturation.py')
-rw-r--r--share/extensions/tests/test_color_moresaturation.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/share/extensions/tests/test_color_moresaturation.py b/share/extensions/tests/test_color_moresaturation.py
new file mode 100644
index 0000000..5a3c196
--- /dev/null
+++ b/share/extensions/tests/test_color_moresaturation.py
@@ -0,0 +1,28 @@
+# coding=utf-8
+from color_moresaturation import MoreSaturation
+from .test_inkex_extensions import ColorBaseCase
+
+
+class ColorMoreSaturationTest(ColorBaseCase):
+ effect_class = MoreSaturation
+ color_tests = [
+ ("none", "none"),
+ ("hsl(0, 0, 0)", "hsl(0, 12, 0)"),
+ ("hsl(255, 255, 255)", "hsl(255, 255, 255)"),
+ ((0, 0, 0), "#000000"),
+ ((255, 255, 255), "#ffffff"),
+ ((192, 192, 192), "#c2bdbd"),
+ ((128, 128, 128), "#857a7a"),
+ ((128, 0, 0), "#800000"),
+ ((255, 0, 0), "#fe0000"),
+ ((128, 128, 0), "#807e00"),
+ ((255, 255, 0), "#fefb00"),
+ ((0, 128, 0), "#008000"),
+ ((0, 255, 0), "#00fe00"),
+ ((0, 128, 128), "#00807e"),
+ ((0, 255, 255), "#00fefb"),
+ ((0, 0, 128), "#000080"),
+ ((0, 0, 255), "#0000fe"),
+ ((128, 0, 128), "#7e0080"),
+ ((255, 0, 255), "#fb00fe"),
+ ]