1# coding=utf-8
2from color_removered import RemoveRed
3from .test_inkex_extensions import ColorBaseCase
4
5class ColorRemoveRedTest(ColorBaseCase):
6    effect_class = RemoveRed
7    color_tests = [
8        ("none", "none"),
9        ((0, 0, 0), "#000000"),
10        ((255, 255, 255), "#00ffff"),
11        ((192, 192, 192), "#00c0c0"),
12        ((128, 128, 128), "#008080"),
13        ((128, 0, 0), "#000000"),
14        ((255, 0, 0), "#000000"),
15        ((128, 128, 0), "#008000"),
16        ((255, 255, 0), "#00ff00"),
17        ((0, 128, 0), "#008000"),
18        ((0, 255, 0), "#00ff00"),
19        ((0, 128, 128), "#008080"),
20        ((0, 255, 255), "#00ffff"),
21        ((0, 0, 128), "#000080"),
22        ((0, 0, 255), "#0000ff"),
23        ((128, 0, 128), "#000080"),
24        ((255, 0, 255), "#0000ff"),
25    ]
26