()
| 394 | |
| 395 | #[test] |
| 396 | fn test_change_already_applied_error() { |
| 397 | let hash = test_hash(); |
| 398 | let err = LocalApplyError::ChangeAlreadyApplied { hash }; |
| 399 | |
| 400 | assert!(!err.is_dependency_error()); |
| 401 | assert!(err.is_already_applied()); |
| 402 | assert!(err.is_recoverable()); |
| 403 | } |
| 404 | |
| 405 | #[test] |
| 406 | fn test_internal_error() { |
nothing calls this directly
no test coverage detected