()
| 228 | |
| 229 | |
| 230 | def test_list(): |
| 231 | context = limited(data=[1, 2, 3]) |
| 232 | assert guarded_eval("data[1]", context) == 2 |
| 233 | assert guarded_eval("data.copy", context) |
| 234 | |
| 235 | |
| 236 | def test_dict_literal(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…