mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-16 18:44:47 +00:00
9 lines
172 B
Python
9 lines
172 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
from bcf.xml_parser import XmlParserSerializer
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(scope="session")
|
||
|
|
def xml_handler() -> XmlParserSerializer:
|
||
|
|
return XmlParserSerializer()
|