testty 0.8.11

Rust-native TUI end-to-end testing framework using PTY-driven semantic assertions, native frame rendering, and VHS-driven GIF capture.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Proof pipeline for generating self-documenting test output.
//!
//! The proof module collects labeled captures during scenario execution
//! and renders them through swappable [`backend::ProofBackend`]
//! implementations. [`report::ProofReport`] is the central collector that all
//! backends consume.

pub mod backend;
pub mod frame_text;
pub mod gif;
pub mod html;
pub mod report;
pub mod strip;