netsuke-build 0.1.0-beta3

A YAML-powered Ninja/Jinja hybrid build system.
//! Tests for glob validation and expansion helpers.
//!
//! Split by concern: [`pattern`] covers normalisation and brace validation,
//! [`expansion`] covers the matches [`super::glob_paths`] returns,
//! [`capability`] covers the capability handle the metadata checks run
//! through, [`diagnostics`] covers the counters and events it records,
//! [`property`] covers the prefix and relativisation invariants the fixed
//! cases are examples of, [`base`] covers the injected base directory that
//! anchors relative patterns, and [`base_property`] exercises those anchoring
//! invariants through the production [`super::glob_paths`] boundary across
//! arbitrary safe nesting.

#[cfg(unix)]
mod base;
mod base_property;
mod capability;
mod diagnostics;
mod diagnostics_support;
mod expansion;
mod pattern;
mod property;