mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
add unit testing for ServiceConfig::register()
This commit is contained in:
parent
5e9715e92d
commit
91caca1272
1 changed files with 8 additions and 1 deletions
|
@ -152,7 +152,7 @@ mod tests {
|
||||||
use crate::http::{Method, StatusCode};
|
use crate::http::{Method, StatusCode};
|
||||||
use crate::util::Bytes;
|
use crate::util::Bytes;
|
||||||
use crate::web::test::{call_service, init_service, read_body, TestRequest};
|
use crate::web::test::{call_service, init_service, read_body, TestRequest};
|
||||||
use crate::web::{self, App, HttpRequest, HttpResponse};
|
use crate::web::{self, App, DefaultError, HttpRequest, HttpResponse};
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_configure_state() {
|
async fn test_configure_state() {
|
||||||
|
@ -225,4 +225,11 @@ mod tests {
|
||||||
let resp = call_service(&srv, req).await;
|
let resp = call_service(&srv, req).await;
|
||||||
assert_eq!(resp.status(), StatusCode::OK);
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_service_config_register() {
|
||||||
|
let cfg: ServiceConfig<DefaultError> = ServiceConfig::register();
|
||||||
|
assert!(cfg.services.is_empty());
|
||||||
|
assert!(cfg.external.is_empty());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue