()
| 684 | #[test] |
| 685 | #[ignore = "Requires environment configuration and is expensive"] |
| 686 | fn test_get_and_patch_file_ok() { |
| 687 | #[tokio::main] |
| 688 | async fn run(context: &mut TestContext) { |
| 689 | let (filename, content) = context.random_file(); |
| 690 | do_get_and_patch_file_test(context, &filename, content).await; |
| 691 | } |
| 692 | run(&mut TestContext::new_from_env()); |
| 693 | } |
| 694 | |
| 695 | #[test] |
| 696 | #[ignore = "Requires environment configuration and is expensive"] |