()
| 91 | |
| 92 | #[test] |
| 93 | fn test_get_field() { |
| 94 | evaluate_expr_test( |
| 95 | col("props").field("a"), |
| 96 | vec![ |
| 97 | "+------------+", |
| 98 | "| expr |", |
| 99 | "+------------+", |
| 100 | "| 2021-02-01 |", |
| 101 | "| 2021-02-02 |", |
| 102 | "| 2021-02-03 |", |
| 103 | "+------------+", |
| 104 | ], |
| 105 | ); |
| 106 | } |
| 107 | |
| 108 | #[test] |
| 109 | fn test_get_field_null() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…