We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
supported_formats
1 parent a31c4d3 commit 7ff2b30Copy full SHA for 7ff2b30
test/test_catalog.py
@@ -0,0 +1,14 @@
1
+from __future__ import print_function
2
+
3
+import unittest
4
+from pattern_for_tests import *
5
6
7
+class TestDataCatalog(unittest.TestCase):
8
9
+ def test_catalog_files(self):
10
+ for f in EmbPattern.supported_formats():
11
+ self.assertIn("extensions", f)
12
+ self.assertIn("extension", f)
13
+ self.assertIn("description", f)
14
+ self.assertIn("category", f)
0 commit comments