()
| 695 | #[test] |
| 696 | #[ignore = "Requires environment configuration and is expensive"] |
| 697 | fn test_get_and_patch_file_empty_ok() { |
| 698 | #[tokio::main] |
| 699 | async fn run(context: &mut TestContext) { |
| 700 | let (filename, _content) = context.random_file(); |
| 701 | do_get_and_patch_file_test(context, &filename, &[]).await; |
| 702 | } |
| 703 | run(&mut TestContext::new_from_env()); |
| 704 | } |
| 705 | |
| 706 | #[test] |
| 707 | #[ignore = "Requires environment configuration and is expensive"] |