binf/tests/container.rs

8 lines
134 B
Rust
Raw Permalink Normal View History

2023-12-29 23:07:56 +01:00
use binf::BitFlags;
#[test]
fn standalone() {
let flags = BitFlags::<u8>::new(0b10101010);
assert_eq!(*flags, 0b10101010);
}