summaryrefslogtreecommitdiff
path: root/vendor/bitflags/src/tests/from_bits_truncate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bitflags/src/tests/from_bits_truncate.rs')
-rw-r--r--vendor/bitflags/src/tests/from_bits_truncate.rs42
1 files changed, 0 insertions, 42 deletions
diff --git a/vendor/bitflags/src/tests/from_bits_truncate.rs b/vendor/bitflags/src/tests/from_bits_truncate.rs
deleted file mode 100644
index e4f3e537..00000000
--- a/vendor/bitflags/src/tests/from_bits_truncate.rs
+++ /dev/null
@@ -1,42 +0,0 @@
-use super::*;
-
-use crate::Flags;
-
-#[test]
-fn cases() {
- case(0, 0, TestFlags::from_bits_truncate);
- case(1, 1, TestFlags::from_bits_truncate);
- case(
- 1 | 1 << 1 | 1 << 2,
- 1 | 1 << 1 | 1 << 2,
- TestFlags::from_bits_truncate,
- );
-
- case(0, 1 << 3, TestFlags::from_bits_truncate);
- case(1, 1 | 1 << 3, TestFlags::from_bits_truncate);
-
- case(1 | 1 << 1, 1 | 1 << 1, TestOverlapping::from_bits_truncate);
-
- case(1 << 1, 1 << 1, TestOverlapping::from_bits_truncate);
-
- case(1 << 5, 1 << 5, TestExternal::from_bits_truncate);
-}
-
-#[track_caller]
-fn case<T: Flags>(expected: T::Bits, input: T::Bits, inherent: impl FnOnce(T::Bits) -> T)
-where
- <T as Flags>::Bits: std::fmt::Debug + PartialEq,
-{
- assert_eq!(
- expected,
- inherent(input).bits(),
- "T::from_bits_truncate({:?})",
- input
- );
- assert_eq!(
- expected,
- T::from_bits_truncate(input).bits(),
- "Flags::from_bits_truncate({:?})",
- input
- );
-}