()
| 138 | |
| 139 | #[test] |
| 140 | fn map_remote_409_to_already_exists() { |
| 141 | let remote = atomic_remote::RemoteError::http(409, "Conflict"); |
| 142 | let err = map_remote_error(remote, "ignored"); |
| 143 | assert!(matches!(err, TeamsError::AlreadyExists(ref s) if s == "Conflict")); |
| 144 | } |
| 145 | |
| 146 | #[test] |
| 147 | fn map_remote_500_to_remote() { |
nothing calls this directly
no test coverage detected