mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
16 lines
513 B
Python
16 lines
513 B
Python
import test.bootstrap
|
|
import ifcopenshell.api
|
|
|
|
|
|
class TestEditTextLiteral(test.bootstrap.IFC4):
|
|
def test_run(self):
|
|
text = self.file.createIfcTextLiteralWithExtent()
|
|
ifcopenshell.api.run("drawing.edit_text_literal", self.file, text_literal=text, attributes={
|
|
"Literal": "Literal",
|
|
"Path": "RIGHT",
|
|
"BoxAlignment": "middle",
|
|
})
|
|
assert text.Literal == "Literal"
|
|
assert text.Path == "RIGHT"
|
|
assert text.BoxAlignment == "middle"
|