(self)
| 74 | self.result = self.Request() |
| 75 | return self.result |
| 76 | def Request(self): |
| 77 | obj = features[self.feature] |
| 78 | assert self.assertion(obj), \ |
| 79 | "The value %r of %r does not match the specified criteria" \ |
| 80 | % (obj, self.feature) |
| 81 | return obj |
| 82 | |
| 83 | class Component(object): |
| 84 | "Symbolic base class for components" |
no outgoing calls
no test coverage detected