()
| 891 | |
| 892 | #[test] |
| 893 | fn xor() { |
| 894 | assert!(NONE.xor(NONE).is_none().to_bool()); |
| 895 | assert!(SOME.xor(NONE).ct_eq(&SOME).to_bool()); |
| 896 | assert!(NONE.xor(SOME).ct_eq(&SOME).to_bool()); |
| 897 | assert!(SOME.xor(OTHER).is_none().to_bool()); |
| 898 | } |
| 899 | |
| 900 | #[test] |
| 901 | fn zip() { |
nothing calls this directly
no outgoing calls
no test coverage detected