azure_core_test 0.1.0

Utilities for testing client libraries built on azure_core.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Licensed under the MIT License.

#![allow(dead_code)]
#![allow(unknown_lints)]
#![allow(unnameable_test_items)]
use include_file::include_markdown;

#[ignore = "only compile doc examples"]
#[tokio::test]
async fn readme() -> Result<(), Box<dyn std::error::Error>> {
    include_markdown!("README.md", "get-secret");

    Ok(())
}