(self)
| 30 | self.vanilla = self._load("decorators") |
| 31 | |
| 32 | def allows_access_to_wrapped_object(self): |
| 33 | def lolcats(c): |
| 34 | pass |
| 35 | |
| 36 | assert task(lolcats).body == lolcats |
| 37 | |
| 38 | def allows_alias_specification(self): |
| 39 | assert self.vanilla["foo"] == self.vanilla["bar"] |