(self, wrapped_object)
| 334 | # method which all testcases use, we get to make sure all behaviors |
| 335 | # tested in the parent testcase also apply to SimpleLazyObject. |
| 336 | def lazy_wrap(self, wrapped_object): |
| 337 | return SimpleLazyObject(lambda: wrapped_object) |
| 338 | |
| 339 | def test_repr(self): |
| 340 | # First, for an unevaluated SimpleLazyObject |
no test coverage detected