cargo fmt

This commit is contained in:
elipeter 2026-05-21 14:35:42 -05:00
parent bec7bbf96c
commit 3a35cd6c8f
294 changed files with 6809 additions and 3911 deletions

View file

@ -236,9 +236,18 @@ mod tests {
#[test]
fn flask_login_required_resolves_case_insensitively() {
assert!(is_router_auth_marker(AuthFramework::Flask, "login_required"));
assert!(is_router_auth_marker(AuthFramework::Flask, "Login_Required"));
assert!(!is_router_auth_marker(AuthFramework::Flask, "something_else"));
assert!(is_router_auth_marker(
AuthFramework::Flask,
"login_required"
));
assert!(is_router_auth_marker(
AuthFramework::Flask,
"Login_Required"
));
assert!(!is_router_auth_marker(
AuthFramework::Flask,
"something_else"
));
}
#[test]