summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_export_gimp_palette.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_export_gimp_palette.py')
-rw-r--r--share/extensions/tests/test_export_gimp_palette.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/share/extensions/tests/test_export_gimp_palette.py b/share/extensions/tests/test_export_gimp_palette.py
new file mode 100644
index 0000000..b81cbc9
--- /dev/null
+++ b/share/extensions/tests/test_export_gimp_palette.py
@@ -0,0 +1,10 @@
+# coding=utf-8
+from export_gimp_palette import ExportGimpPalette
+from inkex.tester import ComparisonMixin, TestCase
+from inkex.tester.filters import WindowsTextCompat
+
+
+class TestExportGplBasic(ComparisonMixin, TestCase):
+ effect_class = ExportGimpPalette
+ compare_file = "svg/colors.svg"
+ compare_filters = [WindowsTextCompat()]