(self, option=option)
| 582 | break |
| 583 | else: |
| 584 | def test(self, option=option): |
| 585 | widget = self.create() |
| 586 | widget[option] |
| 587 | raise AssertionError('Option "%s" is not tested in %s' % |
| 588 | (option, cls.__name__)) |
| 589 | test.__name__ = methodname |
| 590 | setattr(cls, methodname, test) |
| 591 | return cls |
no test coverage detected
searching dependent graphs…