pyembroidery/test/test_catalog.py

15 wiersze
390 B
Python
Czysty Zwykły widok Historia

2021-12-21 03:39:43 +00:00
from __future__ import print_function
import unittest
2022-04-19 07:57:06 +00:00
from test.pattern_for_tests import *
2021-12-21 03:39:43 +00:00
class TestDataCatalog(unittest.TestCase):
def test_catalog_files(self):
for f in EmbPattern.supported_formats():
self.assertIn("extensions", f)
self.assertIn("extension", f)
self.assertIn("description", f)
self.assertIn("category", f)