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 3bf61c4 commit f493e06Copy full SHA for f493e06
integration_tests/test_odafc.py
@@ -88,13 +88,17 @@ def doc(self):
88
return dxf
89
90
def test_export_dwg(self, tmp_path, doc):
91
- dwg_path = tmp_path / "r2013.dwg"
+ dwg_path = tmp_path / "r2013_1.dwg"
92
+ assert dwg_path.exists() is False
93
+
94
odafc.export_dwg(doc, str(dwg_path), "R2013")
95
assert dwg_path.exists() is True
96
97
def test_read_dwg(self, tmp_path, doc):
98
+ dwg_path = tmp_path / "r2013_2.dwg"
99
100
101
102
loaded_doc = odafc.readfile(str(dwg_path))
103
assert loaded_doc.acad_release == "R2013"
104
0 commit comments