1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

Add test to check content type image/*

This commit is contained in:
William R. Arellano 2023-03-07 20:32:37 -05:00
parent 99bccb74ac
commit 68adcf657a

View file

@ -53,6 +53,11 @@ crate::http::header::common_header! {
test1,
vec![b"text/html"],
Some(HeaderField(mime::TEXT_HTML)));
crate::http::header::common_header_test!(
test2,
vec![b"image/*"],
Some(HeaderField(mime::IMAGE_STAR)));
}
}