Ejemplo n.º 1
0
 def test_set_invalid_value_raises_exception(self):
     attribs = GfxAttribs()
     with pytest.raises(ezdxf.DXFValueError):
         attribs.lineweight = 300
Ejemplo n.º 2
0
 def test_set_value(self):
     attribs = GfxAttribs()
     attribs.lineweight = 25
     assert attribs.lineweight == 25