| 142 | fn basic_auth_generates_expected_header() { |
| 143 | let config = AuthConfig { |
| 144 | auth_type: AuthType::Basic, |
| 145 | username: "raunak".to_string(), |
| 146 | password: "secret".to_string(), |
| 147 | ..Default::default() |
| 148 | }; |
| 149 | |
| 150 | assert_eq!( |
| 151 | config.to_header(), |
nothing calls this directly
no outgoing calls
no test coverage detected