//! Shared fixtures for the per-RFC compliance suite. Each test file that needs
//! them does `mod common;`. Not every file uses every helper, so the module-wide
//! `allow(dead_code)` keeps the unused-in-this-binary items quiet.
/// Wire-dangerous and otherwise awkward values, reused across encode/parse tests.
pub const HOSTILE: & = &;
/// Every ASCII byte `0x00..=0x7F` paired with its single-character `String`.
/// Bytes `>= 0x80` cannot form a one-byte `&str`, so non-ASCII is covered by
/// explicit fixtures instead.