[go: up one dir, main page]

rocket 0.3.12

Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate rocket;

#[test]
#[should_panic]
fn bad_dynamic_mount() {
    rocket::ignite().mount("<name>", vec![]);
}

#[test]
fn good_static_mount() {
    rocket::ignite().mount("abcdefghijkl_mno", vec![]);
}