()
| 141 | |
| 142 | #[test] |
| 143 | fn test_list_index() { |
| 144 | #[rustfmt::skip] |
| 145 | evaluate_expr_test( |
| 146 | col("list").index(lit(1i64)), |
| 147 | vec![ |
| 148 | "+------+", |
| 149 | "| expr |", |
| 150 | "+------+", |
| 151 | "| one |", |
| 152 | "| two |", |
| 153 | "| five |", |
| 154 | "+------+", |
| 155 | ], |
| 156 | ); |
| 157 | } |
| 158 | |
| 159 | #[test] |
| 160 | fn test_list_range() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…