()
| 102 | |
| 103 | @dec.skip_without("pandas") |
| 104 | def test_pandas_series_iloc(): |
| 105 | import pandas as pd |
| 106 | |
| 107 | series = pd.Series([1], index=["a"]) |
| 108 | context = limited(data=series) |
| 109 | assert guarded_eval("data.iloc[0]", context) == 1 |
| 110 | |
| 111 | |
| 112 | def test_rejects_custom_properties(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…