1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 17:07:01 +02:00

make cookies optional

This commit is contained in:
Nikolay Kim
2019-03-23 10:06:54 -07:00
parent 8872f3b590
commit 535b407ac0
3 changed files with 10 additions and 7 deletions

View File

@@ -11,6 +11,7 @@ use actix_rt::Runtime;
use actix_server_config::ServerConfig;
use actix_service::{IntoNewService, NewService, Service};
use bytes::Bytes;
#[cfg(feature = "cookies")]
use cookie::Cookie;
use futures::future::{lazy, Future};
@@ -262,6 +263,7 @@ impl TestRequest {
self
}
#[cfg(feature = "cookies")]
/// Set cookie for this request
pub fn cookie(mut self, cookie: Cookie) -> Self {
self.req.cookie(cookie);