def testNegedgeAttrReadOnly(self): """ negedge attribute should not be writable""" s1 = Signal(1) try: s1.negedge = 1 except AttributeError: pass else: self.fail()
def testNegedgeAttrReadOnly(self): """ negedge attribute should not be writable""" s1 = Signal(1) with pytest.raises(AttributeError): s1.negedge = 1