1 2 3 4 5 6 7
use wae_https::extract::*; #[test] fn test_extractor_error_display() { let err = ExtractorError::Custom("test error".to_string()); assert_eq!(format!("{}", err), "Extractor error: test error"); }