def test_set_invalid_value_raises_exception(self): attribs = GfxAttribs() with pytest.raises(ezdxf.DXFValueError): attribs.lineweight = 300
def test_set_value(self): attribs = GfxAttribs() attribs.lineweight = 25 assert attribs.lineweight == 25