cueloop 0.4.1

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
//! Queue import unit tests grouped by concern.
//!
//! Purpose:
//! - Queue import unit tests grouped by concern.
//!
//! Responsibilities:
//! - Share the extracted queue import unit suite across parser, normalization, and merge helpers.
//! - Keep the production import facade free of large inline scenario blocks.
//!
//! Scope:
//! - Limited to this file's owning feature boundary.
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants/Assumptions:
//! - Keep behavior aligned with CueLoop's canonical CLI, machine-contract, and queue semantics.

use super::*;

mod merge_tests;
mod normalize_tests;
mod parse_tests;