mirror of
https://github.com/actix/actix-web.git
synced 2025-01-18 05:05:43 +00:00
test for Router::has_route
This commit is contained in:
parent
a18bd5dac0
commit
63502fa833
1 changed files with 3 additions and 0 deletions
|
@ -550,6 +550,9 @@ mod tests {
|
|||
|
||||
let mut req = req.with_state(Rc::new(()), router);
|
||||
|
||||
assert_eq!(req.router().unwrap().has_route("index"));
|
||||
assert_eq!(!req.router().unwrap().has_route("unknown"));
|
||||
|
||||
assert_eq!(req.url_for("unknown", &["test"]),
|
||||
Err(UrlGenerationError::ResourceNotFound));
|
||||
assert_eq!(req.url_for("index", &["test"]),
|
||||
|
|
Loading…
Reference in a new issue