Sha256: 980591dfaf91e940f42d9a1ce890f237514dd59d458fc264abcf9ceabbc40677
Contents?: true
Size: 871 Bytes
Versions: 8
Compression:
Stored size: 871 Bytes
Contents
use super::*; use crate::Flags; #[test] fn cases() { case(0, TestFlags::from_bits_retain); case(1, TestFlags::from_bits_retain); case(1 | 1 << 1 | 1 << 2, TestFlags::from_bits_retain); case(1 << 3, TestFlags::from_bits_retain); case(1 | 1 << 3, TestFlags::from_bits_retain); case(1 | 1 << 1, TestOverlapping::from_bits_retain); case(1 << 1, TestOverlapping::from_bits_retain); case(1 << 5, TestExternal::from_bits_retain); } #[track_caller] fn case<T: Flags>(input: T::Bits, inherent: impl FnOnce(T::Bits) -> T) where <T as Flags>::Bits: std::fmt::Debug + PartialEq, { assert_eq!( input, inherent(input).bits(), "T::from_bits_retain({:?})", input ); assert_eq!( input, T::from_bits_retain(input).bits(), "Flags::from_bits_retain({:?})", input ); }
Version data entries
8 entries across 8 versions & 1 rubygems