(output: &'a mut Vec<u8>)
| 149 | |
| 150 | assert_eq!( |
| 151 | config.to_header(), |
| 152 | Some(( |
| 153 | "Authorization".to_string(), |
| 154 | "Basic cmF1bmFrOnNlY3JldA==".to_string() |
| 155 | )) |
| 156 | ); |
| 157 | } |
| 158 | |
| 159 | #[test] |
| 160 | fn bearer_auth_omits_empty_token() { |
no test coverage detected