()
| 561 | |
| 562 | #[tokio::test] |
| 563 | async fn test_fn_initcap() -> Result<()> { |
| 564 | let expr = initcap(col("a")); |
| 565 | |
| 566 | let batches = get_batches(expr).await?; |
| 567 | |
| 568 | assert_snapshot!( |
| 569 | batches_to_string(&batches), |
| 570 | @r" |
| 571 | +-----------------+ |
| 572 | | initcap(test.a) | |
| 573 | +-----------------+ |
| 574 | | Abcdef | |
| 575 | | Abc123 | |
| 576 | | Cbadef | |
| 577 | | 123abcdef | |
| 578 | +-----------------+ |
| 579 | "); |
| 580 | |
| 581 | Ok(()) |
| 582 | } |
| 583 | |
| 584 | #[tokio::test] |
| 585 | #[cfg(feature = "unicode_expressions")] |
nothing calls this directly
no test coverage detected
searching dependent graphs…