mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
add h1::SendResponse future; renamed to MessageBody::size
This commit is contained in:
parent
046b7a1425
commit
9bb40c249f
15 changed files with 308 additions and 104 deletions
|
@ -1,8 +1,8 @@
|
|||
use actix_http::HttpService;
|
||||
use actix_http_test::TestServer;
|
||||
use actix_web_codegen::get;
|
||||
use actix_web::{http, App, HttpResponse, Responder};
|
||||
use futures::{Future, future};
|
||||
use actix_web_codegen::get;
|
||||
use futures::{future, Future};
|
||||
|
||||
//fn guard_head(head: &actix_web::dev::RequestHead) -> bool {
|
||||
// true
|
||||
|
@ -15,16 +15,15 @@ fn test() -> impl Responder {
|
|||
}
|
||||
|
||||
#[get("/test")]
|
||||
fn auto_async() -> impl Future<Item=HttpResponse, Error=actix_web::Error> {
|
||||
fn auto_async() -> impl Future<Item = HttpResponse, Error = actix_web::Error> {
|
||||
future::ok(HttpResponse::Ok().finish())
|
||||
}
|
||||
|
||||
#[get("/test")]
|
||||
fn auto_sync() -> impl Future<Item=HttpResponse, Error=actix_web::Error> {
|
||||
fn auto_sync() -> impl Future<Item = HttpResponse, Error = actix_web::Error> {
|
||||
future::ok(HttpResponse::Ok().finish())
|
||||
}
|
||||
|
||||
|
||||
#[test]
|
||||
fn test_body() {
|
||||
let mut srv = TestServer::new(|| HttpService::new(App::new().service(test)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue