//! Common test utilities for integration tests.
//!
//! Thin shim over `nlink::lab` so existing integration tests keep
//! working without import changes while the shared helpers live in
//! the public `lab` module.
pub use LabNamespace as TestNamespace;
/// Check if running as root.
/// Skip the test if not running as root.
///
/// Use this at the beginning of integration tests that require root privileges.
/// Skip the test if not running as root (for non-Result functions).