ralph-agent-loop 0.4.0

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Webhook unit tests.
//!
//! Responsibilities:
//! - Organize webhook config, diagnostics, replay, and dispatcher tests into focused modules.
//! - Share common fixture builders and reset helpers across webhook test groups.
//!
//! Does NOT handle:
//! - Network delivery behavior outside the in-process test transport.
//! - Cryptographic verification beyond signature format and redaction-focused assertions.
//!
//! Invariants/assumptions:
//! - Tests may access private module helpers via `super::*`.
//! - Shared reset helpers clear diagnostics and dispatcher state between serial tests.

mod config;
mod diagnostics;
mod support;
mod transport;