deboa-compio 0.1.3

A friendly rest client on top of hyper.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use deboa::TestResult;

#[compio::test]
async fn test_from_str_body() -> TestResult<()> {
    deboa_test_utils::base::request::test_from_str_body().await
}

#[compio::test]
async fn test_set_text_body() -> TestResult<()> {
    deboa_test_utils::base::request::test_set_text_body().await
}

#[compio::test]
async fn test_raw_body() -> TestResult<()> {
    deboa_test_utils::base::request::test_raw_body().await
}