1# coding=utf-8
2from color_moresaturation import MoreSaturation
3from .test_inkex_extensions import ColorBaseCase
4
5class ColorMoreSaturationTest(ColorBaseCase):
6    effect_class = MoreSaturation
7    color_tests = [
8        ("none", "none"),
9        ('hsl(0, 0, 0)', 'hsl(0, 12, 0)'),
10        ('hsl(255, 255, 255)', 'hsl(255, 255, 255)'),
11        ((0, 0, 0), "#000000"),
12        ((255, 255, 255), "#ffffff"),
13        ((192, 192, 192), "#c2bdbd"),
14        ((128, 128, 128), "#857a7a"),
15        ((128, 0, 0), "#800000"),
16        ((255, 0, 0), "#fe0000"),
17        ((128, 128, 0), "#807e00"),
18        ((255, 255, 0), "#fefb00"),
19        ((0, 128, 0), "#008000"),
20        ((0, 255, 0), "#00fe00"),
21        ((0, 128, 128), "#00807e"),
22        ((0, 255, 255), "#00fefb"),
23        ((0, 0, 128), "#000080"),
24        ((0, 0, 255), "#0000fe"),
25        ((128, 0, 128), "#7e0080"),
26        ((255, 0, 255), "#fb00fe"),
27    ]
28