1# coding=utf-8
2from color_removeblue import RemoveBlue
3from .test_inkex_extensions import ColorBaseCase
4
5class ColorRemoveBlueTest(ColorBaseCase):
6    effect_class = RemoveBlue
7    color_tests = [
8        ("none", "none"),
9        ((0, 0, 0), "#000000"),
10        ((255, 255, 255), "#ffff00"),
11        ((192, 192, 192), "#c0c000"),
12        ((128, 128, 128), "#808000"),
13        ((128, 0, 0), "#800000"),
14        ((255, 0, 0), "#ff0000"),
15        ((128, 128, 0), "#808000"),
16        ((255, 255, 0), "#ffff00"),
17        ((0, 128, 0), "#008000"),
18        ((0, 255, 0), "#00ff00"),
19        ((0, 128, 128), "#008000"),
20        ((0, 255, 255), "#00ff00"),
21        ((0, 0, 128), "#000000"),
22        ((0, 0, 255), "#000000"),
23        ((128, 0, 128), "#800000"),
24        ((255, 0, 255), "#ff0000"),
25    ]
26