(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 = {f"x{i + 1}": (inc, f"x{i}") for i in range(10000)} |