mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-09 03:02:45 +00:00
82cd53de36
Closes #2146.
11 lines
204 B
Rust
11 lines
204 B
Rust
#[test]
|
|
#[should_panic]
|
|
fn bad_dynamic_mount() {
|
|
let _ = rocket::build().mount("<name>", vec![]);
|
|
}
|
|
|
|
#[test]
|
|
fn good_static_mount() {
|
|
let _ = rocket::build().mount("/abcdefghijkl_mno", vec![]);
|
|
}
|