1# coding=utf-8
2from color_removegreen import RemoveGreen
3from .test_inkex_extensions import ColorBaseCase
4
5class ColorRemoveGreenTest(ColorBaseCase):
6    effect_class = RemoveGreen
7    color_tests = [
8        ("none", "none"),
9        ((0, 0, 0), "#000000"),
10        ((255, 255, 255), "#ff00ff"),
11        ((192, 192, 192), "#c000c0"),
12        ((128, 128, 128), "#800080"),
13        ((128, 0, 0), "#800000"),
14        ((255, 0, 0), "#ff0000"),
15        ((128, 128, 0), "#800000"),
16        ((255, 255, 0), "#ff0000"),
17        ((0, 128, 0), "#000000"),
18        ((0, 255, 0), "#000000"),
19        ((0, 128, 128), "#000080"),
20        ((0, 255, 255), "#0000ff"),
21        ((0, 0, 128), "#000080"),
22        ((0, 0, 255), "#0000ff"),
23        ((128, 0, 128), "#800080"),
24        ((255, 0, 255), "#ff00ff"),
25    ]
26