()
| 706 | #[test] |
| 707 | #[ignore = "Requires environment configuration and is expensive"] |
| 708 | fn test_get_and_patch_file_utf8() { |
| 709 | #[tokio::main] |
| 710 | async fn run(context: &mut TestContext) { |
| 711 | let (filename, _content) = context.random_file(); |
| 712 | let content = "안녕하세요"; |
| 713 | do_get_and_patch_file_test(context, &filename, content).await; |
| 714 | } |
| 715 | run(&mut TestContext::new_from_env()); |
| 716 | } |
| 717 | |
| 718 | #[test] |
| 719 | #[ignore = "Requires environment configuration and is expensive"] |