all webroutes passing tests(yay!)

This commit is contained in:
shockrahwow 2019-11-27 23:46:06 -08:00
parent ba166cf281
commit 5a3899ffe2

View File

@ -69,7 +69,7 @@ mod test {
#[test] #[test]
fn static_css_get() { fn static_css_get() {
let client = Client::new(rocket()).expect("Valid rocket instance"); let client = Client::new(rocket()).expect("Valid rocket instance");
check_get!(client, "/static/index.css"); check_get!(client, "/static/css/index.css");
check_get!(client, "/static/css/about.css"); check_get!(client, "/static/css/about.css");
} }