mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-24 03:10:24 -08:00
test: export_brep works with BytesIO
This commit is contained in:
parent
7b7c2e07b1
commit
056efe6961
1 changed files with 7 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ license:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import io
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
@ -180,5 +181,11 @@ def test_pathlike_exporters(tmp_path, format, exporter):
|
||||||
exporter(box, path)
|
exporter(box, path)
|
||||||
|
|
||||||
|
|
||||||
|
def test_export_brep_in_memory():
|
||||||
|
buffer = io.BytesIO()
|
||||||
|
box = Box(1, 1, 1).locate(Pos(-1, -2, -3))
|
||||||
|
export_brep(box, buffer)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue