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.
1 parent d607ca2 commit bfeea5eCopy full SHA for bfeea5e
test/test_version_converter_integration.py
@@ -0,0 +1,19 @@
1
+"""
2
+This file tests proper conversion of complex v1.0 odML files
3
+to v1.1 with all supported file formats.
4
5
+
6
+import os
7
+import shutil
8
+import tempfile
9
+import unittest
10
11
12
+class TestVersionConverterIntegration(unittest.TestCase):
13
+ def setUp(self):
14
+ # Set up test environment
15
+ self.tmp_dir = tempfile.mkdtemp(suffix=".odml")
16
17
+ def tearDown(self):
18
+ if os.path.exists(self.tmp_dir):
19
+ shutil.rmtree(self.tmp_dir)
0 commit comments