(self)
| 112 | assert self.get(d, "y") == 2 |
| 113 | |
| 114 | def test_nested_tasks(self): |
| 115 | d = {"x": 1, "y": (inc, "x"), "z": (add, (inc, "x"), "y")} |
| 116 | |
| 117 | assert self.get(d, "z") == 4 |
| 118 | |
| 119 | def test_get_stack_limit(self): |
| 120 | d = {"x%d" % (i + 1): (inc, "x%d" % i) for i in range(10000)} |