Skip to content

Commit bfeea5e

Browse files
committed
[test/versionConv int] Add integration testfile
1 parent d607ca2 commit bfeea5e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)