testty 0.10.5

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
//! Declarative YAML scenario layer.
//!
//! [`model`] holds the pure-data scenario types deserialized from a YAML file;
//! [`runtime`] lowers them onto the runtime engine and evaluates expectations.
//! This layer powers the language-agnostic `testty run scenario.yaml` front end
//! on top of the same engine as the Rust authoring API.

pub mod model;
pub mod runtime;